Skip to content

Commit

Permalink
Avoid using past module for python2/3 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
smuzaffar committed Nov 21, 2024
1 parent 92333e3 commit 8864274
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion FWCore/ParameterSet/python/Types.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
from .Mixins import _ValidatingParameterListBase, specialImportRegistry
from .Mixins import saveOrigin
from .ExceptionHandling import format_typename, format_outerframe
from past.builtins import long
import codecs
import copy
import math
import builtins

long = int
_builtin_bool = bool

class _Untracked(object):
Expand Down
4 changes: 3 additions & 1 deletion FWCore/PythonUtilities/scripts/generateEDF.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

from builtins import zip
from builtins import object
from past.utils import old_div
from builtins import range
import sys
import re
Expand All @@ -15,6 +14,9 @@
sepRE = re.compile (r'[\s,;:]+')
nonSpaceRE = re.compile (r'\S')

def old_div(a, b):
return a // b

##########################
## #################### ##
## ## LumiInfo Class ## ##
Expand Down

0 comments on commit 8864274

Please sign in to comment.