File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 33from .Mixins import _ValidatingParameterListBase , specialImportRegistry
44from .Mixins import saveOrigin
55from .ExceptionHandling import format_typename , format_outerframe
6- from past .builtins import long
76import codecs
87import copy
98import math
109import builtins
1110
11+ long = int
1212_builtin_bool = bool
1313
1414class _Untracked (object ):
Original file line number Diff line number Diff line change 22
33from builtins import zip
44from builtins import object
5- from past .utils import old_div
65from builtins import range
76import sys
87import re
1514sepRE = re .compile (r'[\s,;:]+' )
1615nonSpaceRE = re .compile (r'\S' )
1716
17+ def old_div (a , b ):
18+ return a // b
19+
1820##########################
1921## #################### ##
2022## ## LumiInfo Class ## ##
You can’t perform that action at this time.
0 commit comments