]> granicus.if.org Git - python/log
python
11 years agoIssue #17812: Fixed quadratic complexity of base64.b32encode().
Serhiy Storchaka [Sun, 19 May 2013 08:41:15 +0000 (11:41 +0300)]
Issue #17812: Fixed quadratic complexity of base64.b32encode().

11 years agoIssue #17901: fix TreeBuilder construction for an explicit element_factory=None
Eli Bendersky [Sat, 18 May 2013 22:47:16 +0000 (15:47 -0700)]
Issue #17901: fix TreeBuilder construction for an explicit element_factory=None

Based on report and patch by Aaron Oakley.

11 years agoClose file before reopening to keep Windows happy in test_sax.
Richard Oudkerk [Sat, 18 May 2013 17:11:30 +0000 (18:11 +0100)]
Close file before reopening to keep Windows happy in test_sax.

11 years agoIssue #17980: Fix possible abuse of ssl.match_hostname() for denial of service using...
Antoine Pitrou [Sat, 18 May 2013 15:56:42 +0000 (17:56 +0200)]
Issue #17980: Fix possible abuse of ssl.match_hostname() for denial of service using certificates with many wildcards (CVE-2013-2099).

11 years agoIssue #17989: element_setattro returned incorrect error value.
Eli Bendersky [Sat, 18 May 2013 14:52:34 +0000 (07:52 -0700)]
Issue #17989: element_setattro returned incorrect error value.

This caused an exception to be raised later than expected.

11 years agoUpdate docstring for _asdict() to indicate it is obsolete.
Raymond Hettinger [Fri, 17 May 2013 23:43:14 +0000 (16:43 -0700)]
Update docstring for _asdict() to indicate it is obsolete.
Use the cleaner looking @property style for __dict__.
Move _replace() to be just after make() to indicate that
it is a core method on named tuples.

11 years agoonly recursively expand in the format spec (closes #17644)
Benjamin Peterson [Fri, 17 May 2013 22:34:30 +0000 (17:34 -0500)]
only recursively expand in the format spec (closes #17644)

11 years agoIssue #17563: Fix dict resize performance regression.
Raymond Hettinger [Fri, 17 May 2013 10:01:13 +0000 (03:01 -0700)]
Issue #17563: Fix dict resize performance regression.

11 years agoRemove unnecessary exception handler.
Raymond Hettinger [Fri, 17 May 2013 09:28:33 +0000 (02:28 -0700)]
Remove unnecessary exception handler.

11 years agoIgnore Mac OS X entries for .DS_Store
Raymond Hettinger [Fri, 17 May 2013 09:23:16 +0000 (02:23 -0700)]
Ignore Mac OS X entries for .DS_Store

11 years agoFix some bugs in Tools/scripts/abitype.py.
Serhiy Storchaka [Fri, 17 May 2013 07:17:43 +0000 (10:17 +0300)]
Fix some bugs in Tools/scripts/abitype.py.

11 years agomove definition to top of block
Benjamin Peterson [Fri, 17 May 2013 00:38:22 +0000 (19:38 -0500)]
move definition to top of block

11 years agoIssue #17981: Closed socket on error in SysLogHandler.
Vinay Sajip [Thu, 16 May 2013 21:57:02 +0000 (22:57 +0100)]
Issue #17981: Closed socket on error in SysLogHandler.

11 years agoC89 declaration compliance
Benjamin Peterson [Thu, 16 May 2013 20:29:44 +0000 (15:29 -0500)]
C89 declaration compliance

11 years agoAdd Nick Sloan for his contribution to #17732
Brian Curtin [Thu, 16 May 2013 16:59:29 +0000 (11:59 -0500)]
Add Nick Sloan for his contribution to #17732

11 years agocomplain about "global __class__" in a class body (closes #17983)
Benjamin Peterson [Wed, 15 May 2013 21:17:25 +0000 (16:17 -0500)]
complain about "global __class__" in a class body (closes #17983)

11 years agopost-release update.
Georg Brandl [Wed, 15 May 2013 17:42:39 +0000 (19:42 +0200)]
post-release update.

11 years ago- Fix typos in the multiprocessing module.
doko@ubuntu.com [Wed, 15 May 2013 16:06:56 +0000 (18:06 +0200)]
- Fix typos in the multiprocessing module.

11 years ago- Issue #17754: Make ctypes.util.find_library() independent of the locale.
doko@ubuntu.com [Wed, 15 May 2013 16:02:13 +0000 (18:02 +0200)]
- Issue #17754: Make ctypes.util.find_library() independent of the locale.

11 years agoMisc/NEWS: Add 3.3.3 section and move entries made after the 3.3.2 release
doko@ubuntu.com [Wed, 15 May 2013 16:00:05 +0000 (18:00 +0200)]
Misc/NEWS: Add 3.3.3 section and move entries made after the 3.3.2 release
to the new section.

11 years agowhen arguments are cells clear the locals slot (backport of #17927)
Benjamin Peterson [Wed, 15 May 2013 03:31:26 +0000 (22:31 -0500)]
when arguments are cells clear the locals slot (backport of #17927)

11 years ago- Issue #17977: The documentation for the cadefault argument's default value
Barry Warsaw [Tue, 14 May 2013 15:35:16 +0000 (11:35 -0400)]
- Issue #17977: The documentation for the cadefault argument's default value
  in urllib.request.urlopen() is fixed to match the code.

11 years agoprevent double free in cleanup code (#17968)
Benjamin Peterson [Tue, 14 May 2013 00:55:40 +0000 (19:55 -0500)]
prevent double free in cleanup code (#17968)

11 years agoFix ResourceWarnings in test_sax
Antoine Pitrou [Mon, 13 May 2013 20:34:21 +0000 (22:34 +0200)]
Fix ResourceWarnings in test_sax

11 years agoSilence unclosed open file ResourceWarning.
Terry Jan Reedy [Mon, 13 May 2013 20:07:44 +0000 (16:07 -0400)]
Silence unclosed open file ResourceWarning.

11 years agoComplete 2 to 3 conversion
Terry Jan Reedy [Mon, 13 May 2013 19:39:24 +0000 (15:39 -0400)]
Complete 2 to 3 conversion

11 years agoIssue #17968: Fix memory leak in os.listxattr().
Antoine Pitrou [Mon, 13 May 2013 17:46:29 +0000 (19:46 +0200)]
Issue #17968: Fix memory leak in os.listxattr().

11 years agouse correct format code for exceptions
Benjamin Peterson [Mon, 13 May 2013 00:01:52 +0000 (19:01 -0500)]
use correct format code for exceptions

11 years agoAdded tag v3.3.2 for changeset d047928ae3f6
Georg Brandl [Sun, 12 May 2013 17:55:55 +0000 (19:55 +0200)]
Added tag v3.3.2 for changeset d047928ae3f6

11 years agoCloses #17962: Build with OpenSSL 1.0.1e on Windows. v3.3.2
Georg Brandl [Sun, 12 May 2013 17:50:34 +0000 (19:50 +0200)]
Closes #17962: Build with OpenSSL 1.0.1e on Windows.

11 years agomerge
Georg Brandl [Sun, 12 May 2013 17:44:21 +0000 (19:44 +0200)]
merge

11 years agoIssue #17606: Fixed support of encoded byte strings in the XMLGenerator
Serhiy Storchaka [Sun, 12 May 2013 14:31:16 +0000 (17:31 +0300)]
Issue #17606: Fixed support of encoded byte strings in the XMLGenerator
characters() and ignorableWhitespace() methods.  Original patch by Sebastian
Ortiz Vasquez.

11 years agobump to 3.3.2
Georg Brandl [Sun, 12 May 2013 10:51:38 +0000 (12:51 +0200)]
bump to 3.3.2

11 years agoCloses issue #17732: ignore install-directory specific options in
Georg Brandl [Sun, 12 May 2013 10:36:07 +0000 (12:36 +0200)]
Closes issue #17732: ignore install-directory specific options in
distutils.cfg when a venv is active.

11 years agoBack out patch for #1159051, which caused backwards compatibility problems.
Georg Brandl [Sun, 12 May 2013 09:57:26 +0000 (11:57 +0200)]
Back out patch for #1159051, which caused backwards compatibility problems.

11 years agomerge with 3.2
Georg Brandl [Sun, 12 May 2013 09:52:22 +0000 (11:52 +0200)]
merge with 3.2

11 years agomerge with 3.2
Georg Brandl [Sun, 12 May 2013 09:51:26 +0000 (11:51 +0200)]
merge with 3.2

11 years agoIssue #17915: Fix interoperability of xml.sax with file objects returned by
Georg Brandl [Sun, 12 May 2013 09:41:12 +0000 (11:41 +0200)]
Issue #17915: Fix interoperability of xml.sax with file objects returned by
codecs.open().

11 years agoIssue #1159051: Back out a fix for handling corrupted gzip files that
Georg Brandl [Sun, 12 May 2013 09:29:27 +0000 (11:29 +0200)]
Issue #1159051: Back out a fix for handling corrupted gzip files that
broke backwards compatibility.

11 years agomerge heads
Georg Brandl [Sun, 12 May 2013 09:24:47 +0000 (11:24 +0200)]
merge heads

11 years agoprevent IDLE from trying to close when sys.stdin is reassigned (#17838)
Benjamin Peterson [Sun, 12 May 2013 03:24:28 +0000 (22:24 -0500)]
prevent IDLE from trying to close when sys.stdin is reassigned (#17838)

11 years agoonly close non-None files
Benjamin Peterson [Sat, 11 May 2013 21:29:03 +0000 (16:29 -0500)]
only close non-None files

11 years ago-Wformat is needed by gcc 4.8 (closes #17547)
Benjamin Peterson [Sat, 11 May 2013 18:00:05 +0000 (13:00 -0500)]
-Wformat is needed by gcc 4.8 (closes #17547)

11 years agoIssue #17237: Fix crash in the ASCII decoder on m68k.
Antoine Pitrou [Sat, 11 May 2013 13:58:34 +0000 (15:58 +0200)]
Issue #17237: Fix crash in the ASCII decoder on m68k.

11 years agoI was confused before. It's correct to not call .close() inside the with
Barry Warsaw [Fri, 10 May 2013 15:35:38 +0000 (11:35 -0400)]
I was confused before.  It's correct to not call .close() inside the with
statement, but add a comment that clarifies the purpose of the code.

11 years ago#17841: remove missing codecs aliases from the documentation. Patch by Thomas Fenzl.
Ezio Melotti [Fri, 10 May 2013 02:21:35 +0000 (05:21 +0300)]
#17841: remove missing codecs aliases from the documentation.  Patch by Thomas Fenzl.

11 years ago#17700: update the curses HOWTO for 3.x
Andrew Kuchling [Fri, 10 May 2013 00:05:20 +0000 (20:05 -0400)]
#17700: update the curses HOWTO for 3.x

11 years ago#17938: remove duplicate paragraphs.
Ezio Melotti [Thu, 9 May 2013 12:33:53 +0000 (15:33 +0300)]
#17938: remove duplicate paragraphs.

11 years ago#17809: fix a test failure in test_expanduser when $HOME has a trailing /. Patch...
Ezio Melotti [Thu, 9 May 2013 12:19:45 +0000 (15:19 +0300)]
#17809: fix a test failure in test_expanduser when $HOME has a trailing /.  Patch by Kubilay Kocak.

11 years agoIssue #16601: Restarting iteration over tarfile no more continues from where
Serhiy Storchaka [Thu, 9 May 2013 11:22:26 +0000 (14:22 +0300)]
Issue #16601: Restarting iteration over tarfile no more continues from where
it left off.  Patch by Michael Birtwell.

11 years ago#17877: skip test if the Olson's TZ database is missing.
Ezio Melotti [Wed, 8 May 2013 08:16:02 +0000 (11:16 +0300)]
#17877: skip test if the Olson's TZ database is missing.

11 years ago#16523: improve attrgetter/itemgetter/methodcaller documentation.
Ezio Melotti [Wed, 8 May 2013 07:53:11 +0000 (10:53 +0300)]
#16523: improve attrgetter/itemgetter/methodcaller documentation.

11 years ago#17714: document that the base64 codec adds a trailing newline.
Ezio Melotti [Tue, 7 May 2013 08:14:27 +0000 (11:14 +0300)]
#17714: document that the base64 codec adds a trailing newline.

11 years ago#17871: fix unittest.TextTestRunner signature in the docs. Patch by Yogesh Chaudhari.
Ezio Melotti [Tue, 7 May 2013 06:46:30 +0000 (09:46 +0300)]
#17871: fix unittest.TextTestRunner signature in the docs.  Patch by Yogesh Chaudhari.

11 years agoIssue 17920: Fix-up terminology in the set documentation
Raymond Hettinger [Tue, 7 May 2013 01:22:43 +0000 (18:22 -0700)]
Issue 17920:  Fix-up terminology in the set documentation

11 years agoIssue #17289: The readline module now plays nicer with external modules or applicatio...
Antoine Pitrou [Mon, 6 May 2013 19:51:03 +0000 (21:51 +0200)]
Issue #17289: The readline module now plays nicer with external modules or applications changing the rl_completer_word_break_characters global variable.
Initial patch by Bradley Froehle.

11 years agoIssue #12181: select module: Fix struct kevent definition on OpenBSD 64-bit
Charles-Francois Natali [Mon, 6 May 2013 19:24:31 +0000 (21:24 +0200)]
Issue #12181: select module: Fix struct kevent definition on OpenBSD 64-bit
platforms. Patch by Federico Schwindt.

11 years ago#17833: fix test_gdb failures seen on PPC64 Linux in test_threads (test.test_gdb...
David Malcolm [Mon, 6 May 2013 18:47:15 +0000 (14:47 -0400)]
#17833: fix test_gdb failures seen on PPC64 Linux in test_threads (test.test_gdb.PyBtTests)

11 years ago#14187: Add glossary entry for 'function annotations'.
R David Murray [Mon, 6 May 2013 16:58:16 +0000 (12:58 -0400)]
#14187: Add glossary entry for 'function annotations'.

Patch by Chris Rebert.

11 years agoIssue #17805: Add AsyncResult alias for ApplyResult
Richard Oudkerk [Mon, 6 May 2013 11:10:04 +0000 (12:10 +0100)]
Issue #17805: Add AsyncResult alias for ApplyResult

11 years ago#13495: Avoid loading the color delegator twice in IDLE.
Roger Serwy [Mon, 6 May 2013 03:15:44 +0000 (22:15 -0500)]
#13495: Avoid loading the color delegator twice in IDLE.

11 years agoIssue 17862: Improve the signature of itertools grouper() recipe.
Raymond Hettinger [Mon, 6 May 2013 02:53:41 +0000 (19:53 -0700)]
Issue 17862:  Improve the signature of itertools grouper() recipe.

Putting *n* after the *iterable* matches the signature of other itertools
and recipes.  Also, it reads better.

Suggested by Ezio Melotti.

11 years ago#17798: Allow IDLE to edit new files when specified on command line.
Roger Serwy [Sun, 5 May 2013 16:34:21 +0000 (11:34 -0500)]
#17798: Allow IDLE to edit new files when specified on command line.

11 years agoFix crash caused by 8c1385205a35
Antoine Pitrou [Sun, 5 May 2013 06:12:42 +0000 (08:12 +0200)]
Fix crash caused by 8c1385205a35
(thanks Arfrever for reporting).

11 years agoFix a test to not use an assertion for something that could be
Brett Cannon [Sat, 4 May 2013 22:11:12 +0000 (18:11 -0400)]
Fix a test to not use an assertion for something that could be
legitimately false.

11 years agoIssue #14173: Avoid crashing when reading a signal handler during interpreter shutdown.
Antoine Pitrou [Sat, 4 May 2013 21:16:59 +0000 (23:16 +0200)]
Issue #14173: Avoid crashing when reading a signal handler during interpreter shutdown.

11 years agoIssue #17408: Avoid using an obsolete instance of the copyreg module when the interpr...
Antoine Pitrou [Sat, 4 May 2013 18:45:02 +0000 (20:45 +0200)]
Issue #17408: Avoid using an obsolete instance of the copyreg module when the interpreter is shutdown and then started again.

11 years agoElaborate on bytes-like objects.
Antoine Pitrou [Sat, 4 May 2013 18:18:34 +0000 (20:18 +0200)]
Elaborate on bytes-like objects.

11 years ago#16518: use "bytes-like object" throughout the docs.
Ezio Melotti [Sat, 4 May 2013 15:06:34 +0000 (18:06 +0300)]
#16518: use "bytes-like object" throughout the docs.

11 years ago#7855: Add tests for ctypes/winreg for issues found in IronPython. Initial patch...
Ezio Melotti [Sat, 4 May 2013 14:46:23 +0000 (17:46 +0300)]
#7855: Add tests for ctypes/winreg for issues found in IronPython.  Initial patch by Dino Viehland.

11 years agoIssue #16316: mimetypes now recognizes the .xz and .txz (.tar.xz) extensions.
Serhiy Storchaka [Sat, 4 May 2013 12:12:55 +0000 (15:12 +0300)]
Issue #16316: mimetypes now recognizes the .xz and .txz (.tar.xz) extensions.

11 years agoIssue #15902: Fix imp.load_module() to accept None as a file when
Brett Cannon [Fri, 3 May 2013 14:37:08 +0000 (10:37 -0400)]
Issue #15902: Fix imp.load_module() to accept None as a file when
trying to load an extension module.

While at it, also add a proper unittest.skipIf() guard to another test
involving imp.load_dynamic().

11 years agoIssue #15535: Fix pickling of named tuples.
Raymond Hettinger [Fri, 3 May 2013 09:24:15 +0000 (02:24 -0700)]
Issue #15535:  Fix pickling of named tuples.

11 years ago#17802: Fix an UnboundLocalError in html.parser. Initial tests by Thomas Barlow.
Ezio Melotti [Wed, 1 May 2013 13:18:25 +0000 (16:18 +0300)]
#17802: Fix an UnboundLocalError in html.parser.  Initial tests by Thomas Barlow.

11 years agoIssue #17529: Fix os.sendfile() documentation regarding the type of file
Charles-Francois Natali [Wed, 1 May 2013 13:12:20 +0000 (15:12 +0200)]
Issue #17529: Fix os.sendfile() documentation regarding the type of file
descriptor supported.

11 years agoIssue #17712: Fix test_gdb failures on Ubuntu 13.04.
Antoine Pitrou [Tue, 30 Apr 2013 22:15:44 +0000 (00:15 +0200)]
Issue #17712: Fix test_gdb failures on Ubuntu 13.04.

11 years ago#16518: add "bytes-like object" to the glossary.
Ezio Melotti [Tue, 30 Apr 2013 20:33:31 +0000 (23:33 +0300)]
#16518: add "bytes-like object" to the glossary.

11 years ago#17881: clarify documentation of plistlib.
Ezio Melotti [Tue, 30 Apr 2013 13:34:04 +0000 (16:34 +0300)]
#17881: clarify documentation of plistlib.

11 years agofix the news entry, the description in 3.3 should be different
Gregory P. Smith [Tue, 30 Apr 2013 08:01:54 +0000 (01:01 -0700)]
fix the news entry, the description in 3.3 should be different
than the one merged from 3.2 to match the actual changes here.

11 years agonews entry
Gregory P. Smith [Tue, 30 Apr 2013 07:58:24 +0000 (00:58 -0700)]
news entry

11 years agonews entry
Gregory P. Smith [Tue, 30 Apr 2013 07:57:18 +0000 (00:57 -0700)]
news entry

11 years agonull merge
Gregory P. Smith [Tue, 30 Apr 2013 07:05:50 +0000 (00:05 -0700)]
null merge

11 years agoThis local change was lost during the fixing of issue17192 to update
Gregory P. Smith [Tue, 30 Apr 2013 07:05:25 +0000 (00:05 -0700)]
This local change was lost during the fixing of issue17192 to update
libffi to 3.0.13.  (i'm not sure if it is needed anymore but see
issue 10309 for details which makes no mention of upstream; this
change is already in 3.3 and 3.4 but may need reapplying to 2.7
as done here)

11 years ago* Fix remaining bits of issue 17192 for 3.3 - these changes
Gregory P. Smith [Tue, 30 Apr 2013 07:03:01 +0000 (00:03 -0700)]
* Fix remaining bits of issue 17192 for 3.3 - these changes
  were missing from a messed up merge during the libffi 3.0.13
  import.  the diffs from upstream libffi 3.0.13 are now small.

11 years ago* Fix PART of issue 17192 for 3.3 - reapply the issue11729 patch
Gregory P. Smith [Tue, 30 Apr 2013 06:47:17 +0000 (23:47 -0700)]
* Fix PART of issue 17192 for 3.3 - reapply the issue11729 patch
  that was undone in the merge fun from upstream which already
  had it in 3.0.13.
* Add the missing update to libffi.info.

11 years ago* Fix issue 17192 for 3.2 - reapply the issue11729 patch that was undone
Gregory P. Smith [Tue, 30 Apr 2013 06:45:38 +0000 (23:45 -0700)]
* Fix issue 17192 for 3.2 - reapply the issue11729 patch that was undone
  in the merge fun from upstream which already had it in 3.0.13.
* Add the missing update to libffi.info.

11 years agoignore errors when trying to fetch sys.stdin.encoding (closes #17863)
Benjamin Peterson [Mon, 29 Apr 2013 14:23:08 +0000 (10:23 -0400)]
ignore errors when trying to fetch sys.stdin.encoding (closes #17863)

11 years agoraise an ImportError (rather than fatal) when __import__ is not found in __builtins__...
Benjamin Peterson [Mon, 29 Apr 2013 13:08:14 +0000 (09:08 -0400)]
raise an ImportError (rather than fatal) when __import__ is not found in __builtins__ (closes #17867)

11 years ago#7152: Remove incorrectly added reference to DataHandler.
R David Murray [Sun, 28 Apr 2013 21:06:01 +0000 (17:06 -0400)]
#7152: Remove incorrectly added reference to DataHandler.

11 years agoIssue #17358: imp.load_source() and load_compiled() should now return
Brett Cannon [Sun, 28 Apr 2013 15:53:26 +0000 (11:53 -0400)]
Issue #17358: imp.load_source() and load_compiled() should now return
modules which will typically work when reloaded.

A hack is used to support these functions as their API allowed them to
pass in a file object but then operate as if import had loaded them.
Unfortunately the hack kept a reference around for the file object
passed in which would be unusable on reload since it had been closed.
The solution is to simply use the hack for the initial load but then a
proper loader on the module so that imp.reload() at least has a chance
to work.

11 years agoReflow paragraphs.
R David Murray [Sun, 28 Apr 2013 15:24:35 +0000 (11:24 -0400)]
Reflow paragraphs.

I know one of them looks worse, but now it is <80 chars and
matches the 2.7 text.

11 years ago#7152: Clarify that ProxyHandler is added only if proxy settings are detected.
R David Murray [Sun, 28 Apr 2013 15:07:16 +0000 (11:07 -0400)]
#7152: Clarify that ProxyHandler is added only if proxy settings are detected.

Behavior confirmation and initial patch by Jessica McKellar.

11 years agoAdded base64 module tests for non-binary files.
Serhiy Storchaka [Sun, 28 Apr 2013 12:56:11 +0000 (15:56 +0300)]
Added base64 module tests for non-binary files.

11 years agoIssue #17842. Added base64 module tests with bytearray arguments.
Serhiy Storchaka [Sun, 28 Apr 2013 12:53:08 +0000 (15:53 +0300)]
Issue #17842. Added base64 module tests with bytearray arguments.
Original patch by Kushal Das.

11 years agoIssue #17857: Prevent build failures with pre-3.5.0 versions of sqlite3,
Serhiy Storchaka [Sun, 28 Apr 2013 11:10:27 +0000 (14:10 +0300)]
Issue #17857: Prevent build failures with pre-3.5.0 versions of sqlite3,
such as was shipped with Centos 5 and Mac OS X 10.4.

11 years agoIssue #17843: Remove bz2 test data that triggers antivirus warnings.
Georg Brandl [Sun, 12 May 2013 09:11:51 +0000 (11:11 +0200)]
Issue #17843: Remove bz2 test data that triggers antivirus warnings.

11 years agoIssue #15535: Fix pickling of named tuples.
Georg Brandl [Sun, 12 May 2013 09:09:11 +0000 (11:09 +0200)]
Issue #15535: Fix pickling of named tuples.

11 years agoIssue #17857: Prevent build failures with pre-3.5.0 versions of sqlite3,
Serhiy Storchaka [Sun, 28 Apr 2013 11:10:27 +0000 (14:10 +0300)]
Issue #17857: Prevent build failures with pre-3.5.0 versions of sqlite3,
such as was shipped with Centos 5 and Mac OS X 10.4.

11 years agoIssue #17357: Use more stern wording for
Brett Cannon [Sun, 28 Apr 2013 03:20:32 +0000 (23:20 -0400)]
Issue #17357: Use more stern wording for
importlib.invalidate_caches().

11 years agoIssue #17835: Fix test_io when the default OS pipe buffer size is larger than one...
Antoine Pitrou [Wed, 24 Apr 2013 21:31:38 +0000 (23:31 +0200)]
Issue #17835: Fix test_io when the default OS pipe buffer size is larger than one million bytes.