Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Avoid using past module for python2/3 compatibility #46754

Merged
merged 1 commit into from
Nov 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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