summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* merge headsSenthil Kumaran2014-04-141-1/+1
|\
| * Issue #13598: Added acknowledgements to Misc/NEWS.Eric V. Smith2014-04-141-1/+1
| |
* | merge headsSenthil Kumaran2014-04-143-2/+42
|\ \ | |/
| * Issue #13598: Add auto-numbering of replacement fields to string.Formatter.Eric V. Smith2014-04-143-2/+42
| |
* | merge headsSenthil Kumaran2014-04-141-0/+6
|\ \ | |/
| * Add conditional code for android's lack of definition of SYS_getdent64.Gregory P. Smith2014-04-141-0/+6
| | | | | | | | | | | | Fixes issue20307. No Misc/NEWS entry because frankly this is an esoteric platform for anyone to be figuring out how to cross compile CPython for.
* | Convert urllib.request parse_proxy doctests to unittests.Senthil Kumaran2014-04-142-45/+39
|/
* Issue 17826. Setting an iterable side_effect on a mock created by ↵Michael Foord2014-04-143-2/+34
| | | | create_autospec now works
* #15104: improve the discussion of __main__.R David Murray2014-04-141-5/+11
| | | | Patch by Sam Lucidi.
* Fix the NEWS Entry item. (Thanks Stéphane Wirtel)Senthil Kumaran2014-04-141-1/+1
|
* #18518: mention that including a return statement changes/breaks the behaviourAndrew Kuchling2014-04-141-0/+6
|
* do not generate pipe names in the temporary dirBenjamin Peterson2014-04-141-1/+1
|
* Issue #7776: Fix ``Host:'' header and reconnection when using ↵Senthil Kumaran2014-04-143-26/+100
| | | | | | http.client.HTTPConnection.set_tunnel(). Patch by Nikolaus Rath.
* merge 3.3Benjamin Peterson2014-04-140-0/+0
|\
| * merge 3.2Benjamin Peterson2014-04-140-0/+0
| |\
| | * fix poor spellingBenjamin Peterson2014-04-141-1/+1
| | |
* | | Issue #12546: Allow \x00 as a fill character for builtin type __format__ ↵Eric V. Smith2014-04-143-11/+32
| | | | | | | | | | | | methods.
* | | merge 3.3Benjamin Peterson2014-04-141-4/+5
|\ \ \ | |/ /
| * | merge 3.2Benjamin Peterson2014-04-141-4/+5
| |\ \ | | |/
| | * disallow a negative idx parameterBenjamin Peterson2014-04-141-4/+5
| | |
* | | MergeMichael Foord2014-04-143-1/+31
|\ \ \
| * | | Issue 20968. unittest.mock.MagicMock now supports divisionMichael Foord2014-04-143-1/+31
| | | |
* | | | Issue #20624: Exception docs wording tweak - clarify that it's okay to ↵Mark Dickinson2014-04-141-4/+4
|/ / / | | | | | | | | | inherit from a subclass of Exception.
* | | #21169: add comment and doc update for getpass change.R David Murray2014-04-142-4/+6
| | |
* | | Fix faq example with division.Eric V. Smith2014-04-141-1/+1
| | |
* | | Fix text about int() with octal numbers. Closes #21212.Eric V. Smith2014-04-141-1/+1
| | |
* | | fix sending tuples to custom generator objects with yield from (closes #21209)Benjamin Peterson2014-04-143-1/+23
| | | | | | | | | | | | Debugged by Victor.
* | | merge 3.3Benjamin Peterson2014-04-144-1/+12
|\ \ \ | |/ /
| * | merge 3.2Benjamin Peterson2014-04-144-1/+12
| |\ \ | | |/
| | * in scan_once, prevent the reading of arbitrary memory when passed a negative ↵Benjamin Peterson2014-04-144-1/+12
| | | | | | | | | | | | | | | | | | index Bug reported by Guido Vranken.
* | | #21169: fix getpass to use replace error handler on UnicodeEncodeError.R David Murray2014-04-143-2/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | If the input stream encoding couldn't encode one or more of the non-ascii characters in the prompt, it would fail, throwing a UnicodeEncodeError. Now if that happens we re-encoding using the 'replace' error handler. Patch by Kushal Das.
* | | Issue #20635: Added tests for Tk geometry managers.Serhiy Storchaka2014-04-133-0/+915
| | |
* | | Issue #21171: Fixed undocumented filter API of the rot13 codec.Serhiy Storchaka2014-04-132-1/+4
| | | | | | | | | | | | Patch by Berker Peksag.
* | | Remove references to the obsolete Mac Carbon modules in the GUINed Deily2014-04-121-8/+4
| | | | | | | | | | | | section of the FAQ.
* | | Issue #21170: Removed invalid parameter names from unittest doc.Terry Jan Reedy2014-04-111-2/+2
| | | | | | | | | | | | Patch by Kushal Das.
* | | Issue #21172: isinstance check relaxed from dict to collections.Mapping.Vinay Sajip2014-04-102-2/+11
| | |
* | | teach 2to3 about 'yield from'Benjamin Peterson2014-04-103-1/+11
| | |
* | | add matrix multiplication operator support to 2to3Benjamin Peterson2014-04-106-9/+19
| | |
* | | Issue #21187: Fix OS X installer fail-to-build with Xcode 5.1.Ned Deily2014-04-091-1/+1
| | |
* | | Issue #20644: Keep build-installer.py in sync across active versions.Ned Deily2014-04-091-9/+18
| | |
* | | issue #21190: Fix the broken docs download linkSenthil Kumaran2014-04-091-1/+1
| | |
* | | Issue #21097: Update Makefile with changed install locations of test ↵Ned Deily2014-04-091-20/+20
| | | | | | | | | | | | directories.
* | | Issue #20644: OS X installer build support for documentation build changesNed Deily2014-04-073-21/+40
| | | | | | | | | | | | in 3.4.1: assume externally supplied sphinx-build is available in /usr/bin.
* | | docs: Better wording for __objclass__ docs. Issue #19281Yury Selivanov2014-04-081-6/+6
| | |
* | | docs: Document __objclass__. Closes #19281.Yury Selivanov2014-04-081-0/+8
| | | | | | | | | | | | Initial patch by Nick Coghlan
* | | inspect.signautre: Fix functools.partial support. Issue #21117Yury Selivanov2014-04-083-93/+146
| | |
* | | use imperativeBenjamin Peterson2014-04-081-1/+1
| | |
* | | PySequence_Fast generally returns a list not a tuple (closes #16395)Benjamin Peterson2014-04-081-4/+4
| | |
* | | the name of the slot of nb_multiply not nb_mulBenjamin Peterson2014-04-081-1/+2
| | |
* | | fix verb (closes #21174)Benjamin Peterson2014-04-071-1/+1
| | |