summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Collapse)AuthorAgeFilesLines
* Issue #11666: Teach pydoc to display full help for named tuplesRaymond Hettinger2011-03-251-0/+3
|
* Add NEWS entry for 9aa6097131efAntoine Pitrou2011-03-231-0/+2
|
* Issue #11628: cmp_to_key should use __slots__.Raymond Hettinger2011-03-221-0/+2
|
* Fix some issue references in NEWSÉric Araujo2011-03-211-5/+5
|\
| * Fix some issue references in NEWSÉric Araujo2011-03-201-6/+6
| |
* | merge 3.1Victor Stinner2011-03-211-0/+3
|\ \ | |/
| * Issue #5537: Fix time2isoz() and time2netscape() functions of httplib.cookiejarVictor Stinner2011-03-211-3/+6
| | | | | | | | for expiration year greater than 2038 on 32-bit systems.
* | Issue #11395: io.FileIO().write() clamps the data length to 32,767 bytes onVictor Stinner2011-03-201-0/+6
| | | | | | | | | | | | | | Windows if the file is a TTY to workaround a Windows bug. The Windows console returns an error (12: not enough space error) on writing into stdout if stdout mode is binary and the length is greater than 66,000 bytes (or less, depending on heap usage).
* | 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
|\ \ | |/ | | | | unbuffered pipes, such that select() works properly on them.
| * Issue #11459: A `bufsize` value of 0 in subprocess.Popen() really createsAntoine Pitrou2011-03-191-0/+3
| | | | | | | | unbuffered pipes, such that select() works properly on them.
* | Oops, wrong issue number in NEWSAntoine Pitrou2011-03-171-1/+1
| |
* | Add news entry for a791dd7d51f3Antoine 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
| | | | | | | | arguments has the wrong type. Patch by Nikita Vetoshkin.
* | Move NEWS entry to correct placeMichael Foord2011-03-171-3/+4
| |
* | Issue #10979. unittest stdout buffering now works with class and module ↵Michael Foord2011-03-171-0/+3
| | | | | | | | setup and teardown.
* | Merge from remoteNick Coghlan2011-03-171-0/+3
|\ \
| * | #11243: tests and fixes for handling of 'dirty data' in additional methodsR David Murray2011-03-171-0/+3
| | |
* | | Close #11577: Improve binhex test coverage and fix ResourceWarningNick Coghlan2011-03-172-0/+5
|/ /
* | Merge #11401 fix from 3.1.R David Murray2011-03-161-0/+3
|\ \ | |/
| * #11401: handle headers with no value.R David Murray2011-03-161-0/+3
| |
* | #11578: add unit tests for timeit module.R David Murray2011-03-161-0/+2
| | | | | | | | Patch by Michael Henry.
* | Closes issue 11503. Improves test coverage of posixpath.Michael Foord2011-03-161-0/+2
| |
* | Merge #9298 fix.R David Murray2011-03-162-0/+5
|\ \ | |/
| * #9298: restore proper folding of base64 encoded bodies.R David Murray2011-03-162-0/+5
| | | | | | | | Patch by Yves Dorfsman.
* | Backport improved test coverage for string.pyNick Coghlan2011-03-162-0/+4
| |
* | Fix typo in NEWSNick Coghlan2011-03-161-1/+1
| |
* | Add missing NEWS entriesNick Coghlan2011-03-161-0/+6
| |
* | correct patch ack (#11133)Benjamin Peterson2011-03-161-1/+1
| |
* | Merge with 3.1Ronald Oussoren2011-03-162-0/+5
|\ \ | |/
| * Issue #11569: use absolute path to the sysctl command in multiprocessing toRonald Oussoren2011-03-162-0/+5
| | | | | | | | | | ensure that it will be found regardless of the shell PATH. This ensures that multiprocessing.cpu_count works on default installs of MacOSX.
* | Closes issue 11133. Fixes two cases where inspect.getattr_static could ↵Michael Foord2011-03-151-1/+4
| | | | | | | | trigger code execution
* | Wing project file update for mercurialMichael Foord2011-03-151-4/+5
| |
* | Issue 11510: Fix BUILD_SET optimizer bug.Raymond Hettinger2011-03-151-0/+2
| |
* | MergeAntoine Pitrou2011-03-151-1/+5
|\ \
| * \ Merge fix for issue #11501Antoine Pitrou2011-03-151-1/+5
| |\ \ | | |/
| | * On behalf of Tarek: Issue #11501: disutils.archive_utils.make_zipfile noAntoine Pitrou2011-03-152-0/+5
| | | | | | | | | | | | | | | longer fails if zlib is not installed. Instead, the zipfile.ZIP_STORED compression is used to create the ZipFile. Patch by Natalia B. Bidart.
| | * #11515: fix several typos. Patch by Piotr Kasprzyk.Ezio Melotti2011-03-151-0/+1
| | |
* | | issue 11432 news entry.Gregory P. Smith2011-03-151-0/+4
|/ /
* | #11554: reactivate test_email_codecs, and make it pass.R David Murray2011-03-152-0/+6
| | | | | | | | | | | | | | | | | | The fix is to charset.py, which was not doing the encoding to the correct output character set when doing a body_encode for either the shift-jis or euc-jp charsets. There's also a fix for handling a bytes input in encoders.py. Patch by Michael Henry, comment changes by me.
* | Issue #11500: Fixed a bug in the os x proxy bypass code for fully qualified ↵Ronald Oussoren2011-03-141-0/+3
|\ \ | |/ | | | | IP addresses in the proxy exception list.
| * Issue #11500: Fixed a bug in the os x proxy bypass code for fully qualified ↵Ronald Oussoren2011-03-141-0/+3
| | | | | | | | | | | | IP addresses in the proxy exception list Patch by Scott Wilson.
| * Fix #11491. When dbm.open was called with a file which already exists andbriancurtin2011-03-142-0/+5
| | | | | | | | | | | | the "flag" argument is "n", dbm.error was being raised. As documented, dbm.open(...,flag='n') will now "Always create a new, empty database, open for reading and writing", regardless of a previous file existing.
* | #11496: skip history test if clear_history is not available.R David Murray2011-03-141-0/+1
| | | | | | | | Patch by Natalia B. Bidart.
* | Fix #11491. When dbm.open was called with a file which already exists andbriancurtin2011-03-142-0/+5
| | | | | | | | | | | | the "flag" argument is "n", dbm.error was being raised. As documented, dbm.open(...,flag='n') will now "Always create a new, empty database, open for reading and writing", regardless of a previous file existing.
* | Issue #1099: Fix the build on MacOSX when building a framework with pydebug ↵Ronald Oussoren2011-03-141-0/+3
|\ \ | |/ | | | | using GCC 4.0.
| * Fixes #1099: Mac compile fails with pydebug and framework enabledRonald Oussoren2011-03-141-0/+3
| | | | | | | | Without this patch "./configure --with-pydebug --enable-framework CC=gcc-4.0" fails on MacOSX
* | Merge #11488 patch from 3.1.R David Murray2011-03-141-0/+1
|\ \ | |/
| * #11488: Add tests for writelines method of SpooledTemporaryFile.R David Murray2011-03-141-0/+1
| | | | | | | | Patch by Evan Dandrea.