Skip to content
This repository has been archived by the owner on Jul 22, 2020. It is now read-only.

tuple parameter unpacking not removed for some lambdas #23

Closed
daira opened this issue Aug 30, 2013 · 1 comment
Closed

tuple parameter unpacking not removed for some lambdas #23

daira opened this issue Aug 30, 2013 · 1 comment

Comments

@daira
Copy link
Collaborator

daira commented Aug 30, 2013

    d.addCallback(lambda (rc, out, err), fn=fn:
                  self.failUnlessEqual(out, fn * 1000))

I would have expected this to be changed to something like

    d.addCallback(lambda rc_and_out_and_err, fn=fn:
                  self.failUnlessEqual(rc_and_out_and_err[1], fn * 1000))
@daira
Copy link
Collaborator Author

daira commented Aug 12, 2014

Moved to PyCQA/modernize#15

@daira daira closed this as completed Aug 12, 2014
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant