Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Analysis
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
LHCb
Analysis
Merge requests
!682
python3 compatibility
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
python3 compatibility
run2_python3
into
run2-patches
Overview
8
Commits
21
Pipelines
24
Changes
70
Merged
Mark Smith
requested to merge
run2_python3
into
run2-patches
4 years ago
Overview
1
Commits
21
Pipelines
24
Changes
70
Expand
Start python3 compatibility.
For lhcb-dpa/project#44
Phys
Rich
Ex
Edited
4 years ago
by
Marco Cattaneo
0
0
Merge request reports
Compare
run2-patches
version 24
58fe0539
4 years ago
version 23
be236794
4 years ago
version 22
58cf9e14
4 years ago
version 21
f2cbf058
4 years ago
version 20
d11a5260
4 years ago
version 19
04e6f91d
4 years ago
version 18
910d4691
4 years ago
version 17
56c3f99d
4 years ago
version 16
1d047d96
4 years ago
version 15
38c9cc4b
4 years ago
version 14
44d6a44e
4 years ago
version 13
c9917256
4 years ago
version 12
11032450
4 years ago
version 11
6d9a1814
4 years ago
version 10
8a619c9f
4 years ago
version 9
c913270b
4 years ago
version 8
7e3c7ba9
4 years ago
version 7
0a2d26f6
4 years ago
version 6
207cc096
4 years ago
version 5
b7e015d7
4 years ago
version 4
ca249a78
4 years ago
version 3
b504e84b
4 years ago
version 2
9b9ce23d
4 years ago
version 1
9b9ce23d
4 years ago
run2-patches (base)
and
latest version
latest version
55095d1b
21 commits,
4 years ago
version 24
58fe0539
20 commits,
4 years ago
version 23
be236794
18 commits,
4 years ago
version 22
58cf9e14
31 commits,
4 years ago
version 21
f2cbf058
30 commits,
4 years ago
version 20
d11a5260
29 commits,
4 years ago
version 19
04e6f91d
28 commits,
4 years ago
version 18
910d4691
27 commits,
4 years ago
version 17
56c3f99d
26 commits,
4 years ago
version 16
1d047d96
25 commits,
4 years ago
version 15
38c9cc4b
23 commits,
4 years ago
version 14
44d6a44e
22 commits,
4 years ago
version 13
c9917256
21 commits,
4 years ago
version 12
11032450
19 commits,
4 years ago
version 11
6d9a1814
18 commits,
4 years ago
version 10
8a619c9f
16 commits,
4 years ago
version 9
c913270b
15 commits,
4 years ago
version 8
7e3c7ba9
14 commits,
4 years ago
version 7
0a2d26f6
13 commits,
4 years ago
version 6
207cc096
10 commits,
4 years ago
version 5
b7e015d7
9 commits,
4 years ago
version 4
ca249a78
4 commits,
4 years ago
version 3
b504e84b
2 commits,
4 years ago
version 2
9b9ce23d
1 commit,
4 years ago
version 1
9b9ce23d
439 commits,
4 years ago
70 files
+
443
−
328
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
70
Search (e.g. *.vue) (Ctrl+P)
Ex/LoKiExample/python/LoKiExample/Bs2DsPi_data.py
+
5
−
4
Options
@@ -19,6 +19,7 @@
# @author Vanya BELYAEV Ivan.Belyaev@nikhef.nl
# @date 2008-10-04
# =============================================================================
from
__future__
import
print_function
__author__
=
"
Vanya BELYAEV Ivan.Belyaebv@nikhef.nl
"
__version__
=
"
CVS Tag $Name: not supported by cvs2svn $, version $Revision: 1.1 $
"
# =============================================================================
@@ -42,12 +43,12 @@ Inputs = getInputs(Files)
# =============================================================================
if
'
__main__
'
==
__name__
:
## just for pure testing purposes
print
'
Files:
'
print
(
'
Files:
'
)
for
f
in
Files
:
print
'
\t
'
,
f
print
'
Inputs:
'
print
(
'
\t
'
,
f
)
print
(
'
Inputs:
'
)
for
i
in
Inputs
:
print
'
\t
'
,
i
print
(
'
\t
'
,
i
)
# =============================================================================
# The END
Loading