-
Notifications
You must be signed in to change notification settings - Fork 4.4k
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
implicit tuple parameter unpacking is removed in python 3 #12009
implicit tuple parameter unpacking is removed in python 3 #12009
Conversation
A new Pull Request was created by @ericvaandering (Eric Vaandering) for CMSSW_8_0_X. implicit tuple parameter unpacking is removed in python 3 It involves the following packages: CondCore/TagCollection @smuzaffar, @diguida, @cmsdoxy, @cerminar, @cmsbuild, @franzoni, @Dr15Jones, @ggovi, @mmusich can you please review it and eventually sign? Thanks. |
please test |
@@ -120,7 +120,8 @@ def import_module(self,partnam,fqname,parent): | |||
if r is not None: | |||
self._depgraph.setdefault(self._last_caller.__name__,{})[r.__name__] = 1 | |||
return r | |||
def load_module(self, fqname, fp, pathname, (suffix, mode, type)): | |||
def load_module(self, fqname, fp, pathname, xxx_todo_changeme): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you provide a better name for the variable?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That actually comes straight from the futurize conversion, but if you have a suggestion (I think this is code you own) I will be happy to update the branch.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
aux_info?
The tests are being triggered in jenkins. |
@@ -417,10 +417,11 @@ def GetXLocator(ax): | |||
|
|||
###################################################################### | |||
|
|||
def TweakPlot(fig, ax, (time_begin, time_end), | |||
def TweakPlot(fig, ax, xxx_todo_changeme, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
time_range?
please test (Will Jenkins listen to me?) |
Pull request #12009 was updated. @smuzaffar, @diguida, @cmsdoxy, @cerminar, @cmsbuild, @franzoni, @Dr15Jones, @ggovi, @mmusich can you please check and sign again. |
I guess it does. @Dr15Jones I made your suggested changes. Thanks. |
please test |
The tests are being triggered in jenkins. |
@ericvaandering The tests completed for your original commit (the commit hash is at the top of the test complete message). I'm pretty sure if Jenkins was listening to your command it would have printed 'The tests are being triggered in jenkins'. |
+1 |
Want to start them or not? I can imagine you have a list of people allowed to start tests.
Sent from a mobile device. Please excuse my brevity or transcription errors.
|
I did start them right before I made that comment :) |
implicit tuple parameter unpacking is removed in python 3
See: https://www.python.org/dev/peps/pep-3113/
auto-fixed by futurize