summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Expand)AuthorAgeFilesLines
...
* | | | | Issue #9348: Raise an early error if argparse nargs and metavar don't match. ...Steven Bethard2011-03-261-0/+2
|\ \ \ \ \ | |/ / / /
| * | | | Issue #9348: Raise an early error if argparse nargs and metavar don't match.Steven Bethard2011-03-261-0/+2
* | | | | Issue #11174: Add argparse.MetavarTypeHelpFormatter, which uses type namesSteven Bethard2011-03-261-0/+3
* | | | | Merge #11675Mark Dickinson2011-03-261-0/+4
|\ \ \ \ \ | |/ / / /
| * | | | Merge #11675Mark Dickinson2011-03-261-0/+4
| |\ \ \ \ | | |/ / /
| | * | | Issue #11675: Zero-out newly-created multiprocessing.[Raw]Array objects.Mark Dickinson2011-03-261-0/+4
| | | |/ | | |/|
| | * | Issue #8651: PyArg_Parse*() functions raise an OverflowError if the fileVictor Stinner2011-03-211-0/+4
* | | | Branch mergeÉric Araujo2011-03-262-13/+3
|\ \ \ \
| * | | | Remove traces of division_warning left over from Python 2 (#10998)Éric Araujo2011-03-262-13/+3
* | | | | Issue #11666: Teach pydoc to display full help for named tuplesRaymond Hettinger2011-03-251-0/+3
|\ \ \ \ \ | |/ / / / |/| / / / | |/ / /
| * | | Issue #11666: Teach pydoc to display full help for named tuplesRaymond Hettinger2011-03-251-0/+3
| | |/ | |/|
* | | Make importlib compatible with __import__ by "fixing" code.co_filenameBrett Cannon2011-03-231-0/+4
* | | Have importlib use the repr of a module name in error messages.Brett Cannon2011-03-231-0/+2
* | | Issue #11653: fix -W with -j in regrtest.Antoine Pitrou2011-03-231-0/+2
|\ \ \ | |/ /
| * | Add NEWS entry for 9aa6097131efAntoine Pitrou2011-03-231-0/+2
* | | Add news entry for the _source attribute created by namedtuple.Raymond Hettinger2011-03-231-0/+5
* | | Issue #11244: Remove outdated peepholer check that was preventing the peephol...Mark Dickinson2011-03-232-0/+4
* | | Do not touch sys.path when site is imported and python was started with -S.Éric Araujo2011-03-232-2/+7
* | | Issue #11333: Add __slots__ to the collections ABCs.Raymond Hettinger2011-03-221-0/+2
* | | Issue #11628: cmp_to_key should use __slots__.Raymond Hettinger2011-03-221-0/+2
|\ \ \ | |/ /
| * | Issue #11628: cmp_to_key should use __slots__.Raymond Hettinger2011-03-221-0/+2
* | | Correctly move email package tests to Lib/test.R David Murray2011-03-211-0/+5
* | | Fix some issue references in NEWSÉric Araujo2011-03-211-9/+9
|\ \ \ | |/ /
| * | Fix some issue references in NEWSÉric Araujo2011-03-211-5/+5
| |\ \ | | |/
| | * Fix some issue references in NEWSÉric Araujo2011-03-201-6/+6
* | | Branch mergeÉric Araujo2011-03-211-0/+3
|\ \ \
| * | | Mark getopt error messages as localizable (fixes #11371).Éric Araujo2011-03-201-0/+3
* | | | merge 3.2Victor Stinner2011-03-211-0/+3
|\ \ \ \ | | |/ / | |/| |
| * | | merge 3.1Victor Stinner2011-03-211-0/+3
| |\ \ \ | | | |/ | | |/|
| | * | Issue #5537: Fix time2isoz() and time2netscape() functions of httplib.cookiejarVictor Stinner2011-03-211-3/+6
* | | | Issue #11127: Raise a TypeError when trying to pickle a socket object.Antoine Pitrou2011-03-201-0/+2
* | | | (merge) Issue #11395: io.FileIO().write() clamps the data length to 32,767Victor Stinner2011-03-201-0/+6
|\ \ \ \ | |/ / / | | | / | |_|/ |/| |
| * | Issue #11395: io.FileIO().write() clamps the data length to 32,767 bytes onVictor Stinner2011-03-201-0/+6
* | | Use proper gettext plural forms in optparse (closes #4391).Éric Araujo2011-03-201-0/+2
* | | Merge NEWS entry edit.Senthil Kumaran2011-03-201-0/+4
|\ \ \ | |/ /
| * | Add NEWS for Issue #11563.Senthil Kumaran2011-03-201-0/+4
* | | Issue #11459: A `bufsize` value of 0 in subprocess.Popen() really createsAntoine Pitrou2011-03-191-0/+3
|\ \ \ | |/ /
| * | Issue #11459: A `bufsize` value of 0 in subprocess.Popen() really createsAntoine Pitrou2011-03-191-0/+3
| |\ \ | | |/
| | * Issue #11459: A `bufsize` value of 0 in subprocess.Popen() really createsAntoine Pitrou2011-03-191-0/+3
* | | Merge NEWS fixAntoine Pitrou2011-03-171-1/+1
|\ \ \ | |/ /
| * | Oops, wrong issue number in NEWSAntoine Pitrou2011-03-171-1/+1
* | | MergeAntoine Pitrou2011-03-171-0/+3
|\ \ \ | |/ /
| * | Add news entry for a791dd7d51f3Antoine Pitrou2011-03-171-0/+3
* | | Issue #5421: merge fixAntoine Pitrou2011-03-171-0/+3
|\ \ \ | |/ /
| * | Issue #5421: merge fixAntoine Pitrou2011-03-171-0/+2
| |\ \ | | |/
| | * Issue #5421: Fix misleading error message when one of socket.sendto()'sAntoine Pitrou2011-03-172-0/+4
* | | Issue #10812: Add some extra posix functions to the os module.Ross Lagerwall2011-03-171-0/+1
* | | Closes issue 10979. unittest buffering now works with class and module setup ...Michael Foord2011-03-171-0/+4
|\ \ \ | |/ /
| * | Move NEWS entry to correct placeMichael Foord2011-03-171-3/+4
| * | Issue #10979. unittest stdout buffering now works with class and module setup...Michael Foord2011-03-171-0/+3