From: Antoine Pitrou Date: Tue, 29 Jan 2013 20:21:56 +0000 (+0100) Subject: Issue #17071: Signature.bind() now works when one of the keyword arguments is named... X-Git-Tag: v3.4.0a1~1498 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=64a5562f4c92b6b99762f71d3506b4b0644cec70;p=thirdparty%2FPython%2Fcpython.git Issue #17071: Signature.bind() now works when one of the keyword arguments is named self. --- 64a5562f4c92b6b99762f71d3506b4b0644cec70 diff --cc Misc/NEWS index beee1c39f734,66bdb03a2ca0..0ddfc0c5b4c2 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -239,11 -170,6 +242,11 @@@ Librar - Issue #12004: Fix an internal error in PyZipFile when writing an invalid Python file. Patch by Ben Morgan. - Have py_compile use importlib as much as possible to avoid code duplication. ++- Have py_compile use importlib as much as possible to avoid code duplication. + +- Issue #180022: Have site.addpackage() consider already known paths even when + none are explicitly passed in. Bug report and fix by Kirill. + - Issue #1602133: on Mac OS X a shared library build (``--enable-shared``) now fills the ``os.environ`` variable correctly.