Skip to content

Commit

Permalink
Merge pull request #46754 from smuzaffar/drop-past-python23-compatibi…
Browse files Browse the repository at this point in the history
…lity

Avoid using past module for python2/3 compatibility
  • Loading branch information
cmsbuild authored Nov 22, 2024
2 parents 92333e3 + 8864274 commit 4417f8d
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 4417f8d

Please sign in to comment.