summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge from 3.4Andrew Kuchling2014-04-141-0/+6
|\
| * #18518: mention that including a return statement changes/breaks the behaviourAndrew Kuchling2014-04-141-0/+6
| |
* | merge 3.4Benjamin Peterson2014-04-141-1/+1
|\ \ | |/
| * do not generate pipe names in the temporary dirBenjamin Peterson2014-04-141-1/+1
| |
* | merge from 3.4Senthil Kumaran2014-04-143-26/+100
|\ \ | |/ | | | | | | Issue #7776: Fix ``Host:'' header and reconnection when using http.client.HTTPConnection.set_tunnel() Patch by Nikolaus Rath.
| * Issue #7776: Fix ``Host:'' header and reconnection when using ↵Senthil Kumaran2014-04-143-26/+100
| | | | | | | | | | | | http.client.HTTPConnection.set_tunnel(). Patch by Nikolaus Rath.
* | Issue #20480: Add ipaddress.reverse_pointer. Patch by Leon Weber.Eric V. Smith2014-04-145-0/+55
| |
* | merge 3.4Benjamin Peterson2014-04-140-0/+0
|\ \ | |/
| * merge 3.3Benjamin Peterson2014-04-140-0/+0
| |\
| | * merge 3.2Benjamin Peterson2014-04-140-0/+0
| | |\
| | | * fix poor spellingBenjamin Peterson2014-04-141-1/+1
| | | |
* | | | Closes issue #12546: Allow \x00 as a fill character for builtin type ↵Eric V. Smith2014-04-143-11/+32
|\ \ \ \ | |/ / / | | | | | | | | __format__ methods.
| * | | Issue #12546: Allow \x00 as a fill character for builtin type __format__ ↵Eric V. Smith2014-04-143-11/+32
| | | | | | | | | | | | | | | | methods.
* | | | merge 3.4Benjamin Peterson2014-04-141-4/+5
|\ \ \ \ | |/ / /
| * | | 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
| |\ \ \
* | \ \ \ MergeMichael Foord2014-04-141-4/+4
|\ \ \ \ \
| * \ \ \ \ Issue #20624: Merge exception docs tweak from 3.4 branch.Mark Dickinson2014-04-141-4/+4
| |\ \ \ \ \ | | |/ / / /
| | * | | | Issue #20624: Exception docs wording tweak - clarify that it's okay to ↵Mark Dickinson2014-04-141-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | inherit from a subclass of Exception.
* | | | | | MergeMichael Foord2014-04-143-1/+31
|\ \ \ \ \ \ | |/ / / / / |/| | / / / | | |/ / / | |/| | |
| * | | | Issue 20968. unittest.mock.MagicMock now supports divisionMichael Foord2014-04-143-1/+31
| |/ / /
* | | | Merge: #21169: add comment and doc update for getpass change.R David Murray2014-04-142-4/+6
|\ \ \ \ | |/ / /
| * | | #21169: add comment and doc update for getpass change.R David Murray2014-04-142-4/+6
| | | |
* | | | Merge 3.4: Fix faq example with division.Eric V. Smith2014-04-141-1/+1
|\ \ \ \ | |/ / /
| * | | Fix faq example with division.Eric V. Smith2014-04-141-1/+1
| | | |
* | | | Merge 3.4: Fix text about int() with octal numbers. Closes #21212.Eric V. Smith2014-04-141-1/+1
|\ \ \ \ | |/ / /
| * | | Fix text about int() with octal numbers. Closes #21212.Eric V. Smith2014-04-141-1/+1
| | | |
* | | | merge 3.4 (#21209)Benjamin Peterson2014-04-143-1/+23
|\ \ \ \ | |/ / /
| * | | fix sending tuples to custom generator objects with yield from (closes #21209)Benjamin Peterson2014-04-143-1/+23
| | | | | | | | | | | | | | | | Debugged by Victor.
* | | | merge 3.4Benjamin Peterson2014-04-144-1/+12
|\ \ \ \ | |/ / /
| * | | 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.
* | | | Mierge #21169: fix getpass to use replace error handler on UnicodeEncodeError.R David Murray2014-04-143-2/+19
|\ \ \ \ | |/ / /
| * | | #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.
* | | | correct sphinx mark up for cmdline options (closes #21210)Benjamin Peterson2014-04-131-2/+4
| | | |
* | | | Issue #20635: Added tests for Tk geometry managers.Serhiy Storchaka2014-04-133-0/+915
|\ \ \ \ | |/ / /
| * | | 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.
| * | | 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.
| * | | Remove references to the obsolete Mac Carbon modules in the GUINed Deily2014-04-121-8/+4
| | | | | | | | | | | | | | | | section of the FAQ.
* | | | test the change of #21193 correctlyBenjamin Peterson2014-04-111-2/+2
| | | |
* | | | Issue #21193: Make (e.g.,) pow(2, -3, 5) raise ValueError rather than ↵Mark Dickinson2014-04-114-2/+6
| | | | | | | | | | | | | | | | TypeError. Patch by Josh Rosenberg.
* | | | Merge with 3.4Terry Jan Reedy2014-04-111-2/+2
|\ \ \ \ | |/ / /
| * | | Issue #21170: Removed invalid parameter names from unittest doc.Terry Jan Reedy2014-04-111-2/+2
| | | | | | | | | | | | | | | | Patch by Kushal Das.
* | | | Issue #20539: Improve math.factorial error messages and types for large inputs.Mark Dickinson2014-04-103-6/+26
| | | | | | | | | | | | | | | | | | | | - Better message for the OverflowError in large positive inputs. - Changed exception type from OverflowError to ValueError for large negative inputs.
* | | | Update comment for the comparison table to use measured results rather than ↵Raymond Hettinger2014-04-101-9/+10
| | | | | | | | | | | | | | | | predicted.