]> granicus.if.org Git - python/log
python
9 years agocleanup datetime code
Victor Stinner [Tue, 8 Sep 2015 23:09:21 +0000 (01:09 +0200)]
cleanup datetime code

remove scories of round half up code and debug code.

9 years agoIssue #23517: fromtimestamp() and utcfromtimestamp() methods of
Victor Stinner [Tue, 8 Sep 2015 23:02:23 +0000 (01:02 +0200)]
Issue #23517: fromtimestamp() and utcfromtimestamp() methods of
datetime.datetime now round microseconds to nearest with ties going to nearest
even integer (ROUND_HALF_EVEN), as round(float), instead of rounding towards
-Infinity (ROUND_FLOOR).

pytime API: replace _PyTime_ROUND_HALF_UP with _PyTime_ROUND_HALF_EVEN. Fix
also _PyTime_Divide() for negative numbers.

_PyTime_AsTimeval_impl() now reuses _PyTime_Divide() instead of reimplementing
rounding modes.

9 years agoRevert change 0eb8c182131e:
Victor Stinner [Tue, 8 Sep 2015 21:58:54 +0000 (23:58 +0200)]
Revert change 0eb8c182131e:

"""Issue #23517: datetime.timedelta constructor now rounds microseconds to
nearest with ties going away from zero (ROUND_HALF_UP), as Python 2 and Python
older than 3.3, instead of rounding to nearest with ties going to nearest even
integer (ROUND_HALF_EVEN)."""

datetime.timedelta uses rounding mode ROUND_HALF_EVEN again.

9 years agoMerge 3.5
Yury Selivanov [Tue, 8 Sep 2015 19:33:33 +0000 (15:33 -0400)]
Merge 3.5

9 years agodocs/whatsnew/3.5: Update peps section
Yury Selivanov [Tue, 8 Sep 2015 19:33:15 +0000 (15:33 -0400)]
docs/whatsnew/3.5: Update peps section

Patch by Elvis Pranskevichus.

9 years agoFixed tests for shutil.make_archive() with relative base_name in the case when
Serhiy Storchaka [Tue, 8 Sep 2015 07:00:43 +0000 (10:00 +0300)]
Fixed tests for shutil.make_archive() with relative base_name in the case when
the path of the directory for temporary files contains symlinks.

9 years agoFixed tests for shutil.make_archive() with relative base_name in the case when
Serhiy Storchaka [Tue, 8 Sep 2015 07:00:22 +0000 (10:00 +0300)]
Fixed tests for shutil.make_archive() with relative base_name in the case when
the path of the directory for temporary files contains symlinks.

9 years agoFixed tests for shutil.make_archive() with relative base_name in the case when
Serhiy Storchaka [Tue, 8 Sep 2015 06:59:02 +0000 (09:59 +0300)]
Fixed tests for shutil.make_archive() with relative base_name in the case when
the path of the directory for temporary files contains symlinks.

9 years agoUpdate PCbuild/readme.txt (merge from 3.5)
Zachary Ware [Tue, 8 Sep 2015 06:12:56 +0000 (01:12 -0500)]
Update PCbuild/readme.txt (merge from 3.5)

9 years agoUpdate PCbuild/readme.txt
Zachary Ware [Tue, 8 Sep 2015 06:12:00 +0000 (01:12 -0500)]
Update PCbuild/readme.txt

9 years agomerge
Raymond Hettinger [Tue, 8 Sep 2015 04:37:17 +0000 (00:37 -0400)]
merge

9 years agomerge
Raymond Hettinger [Tue, 8 Sep 2015 04:36:56 +0000 (00:36 -0400)]
merge

9 years agoFix whitespace in comment.
Raymond Hettinger [Tue, 8 Sep 2015 04:36:29 +0000 (00:36 -0400)]
Fix whitespace in comment.

9 years agoCloses #25010: Merge with 3.5
Zachary Ware [Tue, 8 Sep 2015 04:32:10 +0000 (23:32 -0500)]
Closes #25010: Merge with 3.5

9 years agoIssue #25010: Merge with 3.4
Zachary Ware [Tue, 8 Sep 2015 04:31:49 +0000 (23:31 -0500)]
Issue #25010: Merge with 3.4

9 years agoIssue #25010: Fix path for .pyd example project.
Zachary Ware [Tue, 8 Sep 2015 04:30:46 +0000 (23:30 -0500)]
Issue #25010: Fix path for .pyd example project.

Patch by Shaun Walbridge

9 years agoIssue #24982: shutil.make_archive() with the "zip" format now adds entries
Serhiy Storchaka [Tue, 8 Sep 2015 02:53:42 +0000 (05:53 +0300)]
Issue #24982: shutil.make_archive() with the "zip" format now adds entries
for directories (including empty directories) in ZIP file.
Added test for comparing shutil.make_archive() with the "zip" command.

9 years agoIssue #24982: shutil.make_archive() with the "zip" format now adds entries
Serhiy Storchaka [Tue, 8 Sep 2015 02:51:00 +0000 (05:51 +0300)]
Issue #24982: shutil.make_archive() with the "zip" format now adds entries
for directories (including empty directories) in ZIP file.
Added test for comparing shutil.make_archive() with the "zip" command.

9 years agoIssue #24982: shutil.make_archive() with the "zip" format now adds entries
Serhiy Storchaka [Tue, 8 Sep 2015 02:47:23 +0000 (05:47 +0300)]
Issue #24982: shutil.make_archive() with the "zip" format now adds entries
for directories (including empty directories) in ZIP file.
Added test for comparing shutil.make_archive() with the "zip" command.

9 years agoIssue #22241: Fix a compiler waring
Victor Stinner [Mon, 7 Sep 2015 22:12:49 +0000 (00:12 +0200)]
Issue #22241: Fix a compiler waring

9 years agoRaise more correct exception on overflow in setting buffer_size attribute of
Serhiy Storchaka [Mon, 7 Sep 2015 19:54:33 +0000 (22:54 +0300)]
Raise more correct exception on overflow in setting buffer_size attribute of
expat parser.

9 years agoRaise more correct exception on overflow in setting buffer_size attribute of
Serhiy Storchaka [Mon, 7 Sep 2015 19:54:08 +0000 (22:54 +0300)]
Raise more correct exception on overflow in setting buffer_size attribute of
expat parser.

9 years agoRaise more correct exception on overflow in setting buffer_size attribute of
Serhiy Storchaka [Mon, 7 Sep 2015 19:51:56 +0000 (22:51 +0300)]
Raise more correct exception on overflow in setting buffer_size attribute of
expat parser.

9 years agoIssue #25019: Fixed a crash caused by setting non-string key of expat parser.
Serhiy Storchaka [Mon, 7 Sep 2015 19:41:04 +0000 (22:41 +0300)]
Issue #25019: Fixed a crash caused by setting non-string key of expat parser.
Added additional tests for expat parser attributes.
Based on patch by John Leitch.

9 years agoIssue #25019: Fixed a crash caused by setting non-string key of expat parser.
Serhiy Storchaka [Mon, 7 Sep 2015 19:38:34 +0000 (22:38 +0300)]
Issue #25019: Fixed a crash caused by setting non-string key of expat parser.
Added additional tests for expat parser attributes.
Based on patch by John Leitch.

9 years agoIssue #25019: Fixed a crash caused by setting non-string key of expat parser.
Serhiy Storchaka [Mon, 7 Sep 2015 19:37:02 +0000 (22:37 +0300)]
Issue #25019: Fixed a crash caused by setting non-string key of expat parser.
Added additional tests for expat parser attributes.
Based on patch by John Leitch.

9 years agoIssue #25018: Fixed testing shutil.make_archive() with relative base_name on
Serhiy Storchaka [Mon, 7 Sep 2015 16:59:38 +0000 (19:59 +0300)]
Issue #25018: Fixed testing shutil.make_archive() with relative base_name on
Windows.  The test now makes sense on non-Windows.  Added similar test for
zip format.

9 years agoIssue #25018: Fixed testing shutil.make_archive() with relative base_name on
Serhiy Storchaka [Mon, 7 Sep 2015 16:59:24 +0000 (19:59 +0300)]
Issue #25018: Fixed testing shutil.make_archive() with relative base_name on
Windows.  The test now makes sense on non-Windows.  Added similar test for
zip format.

9 years agoIssue #25018: Fixed testing shutil.make_archive() with relative base_name on
Serhiy Storchaka [Mon, 7 Sep 2015 16:58:23 +0000 (19:58 +0300)]
Issue #25018: Fixed testing shutil.make_archive() with relative base_name on
Windows.  The test now makes sense on non-Windows.  Added similar test for
zip format.

9 years agoMerge 3.5.
Serhiy Storchaka [Mon, 7 Sep 2015 16:52:12 +0000 (19:52 +0300)]
Merge 3.5.

9 years agoMerge heads.
Larry Hastings [Mon, 7 Sep 2015 12:16:38 +0000 (05:16 -0700)]
Merge heads.

9 years agoAdded tag v3.5.0rc3 for changeset 66ed52375df8
Larry Hastings [Mon, 7 Sep 2015 12:12:28 +0000 (05:12 -0700)]
Added tag v3.5.0rc3 for changeset 66ed52375df8

9 years agoVersion bump for Python 3.5.0rc3. v3.5.0rc3
Larry Hastings [Mon, 7 Sep 2015 12:12:05 +0000 (05:12 -0700)]
Version bump for Python 3.5.0rc3.

9 years agoUpdated topics (again) for Python 3.5.0rc3 (second try).
Larry Hastings [Mon, 7 Sep 2015 12:10:55 +0000 (05:10 -0700)]
Updated topics (again) for Python 3.5.0rc3 (second try).

9 years agoExplicitly test archive name in shutil.make_archive() tests to expose failure
Serhiy Storchaka [Mon, 7 Sep 2015 10:57:21 +0000 (13:57 +0300)]
Explicitly test archive name in shutil.make_archive() tests to expose failure
details in issue25018.

9 years agoExplicitly test archive name in shutil.make_archive() tests to expose failure
Serhiy Storchaka [Mon, 7 Sep 2015 10:56:49 +0000 (13:56 +0300)]
Explicitly test archive name in shutil.make_archive() tests to expose failure
details in issue25018.

9 years agoExplicitly test archive name in shutil.make_archive() tests to expose failure
Serhiy Storchaka [Mon, 7 Sep 2015 10:55:25 +0000 (13:55 +0300)]
Explicitly test archive name in shutil.make_archive() tests to expose failure
details in issue25018.

9 years agoMerge with 3.5
Terry Jan Reedy [Mon, 7 Sep 2015 05:58:43 +0000 (01:58 -0400)]
Merge with 3.5

9 years agoMerge with 3.4
Terry Jan Reedy [Mon, 7 Sep 2015 05:58:29 +0000 (01:58 -0400)]
Merge with 3.4

9 years agoIssue #24889: When starting Idle, force focus onto Idle window if not already
Terry Jan Reedy [Mon, 7 Sep 2015 05:58:13 +0000 (01:58 -0400)]
Issue #24889: When starting Idle, force focus onto Idle window if not already
there (as when opening Idle from interactive Python on Windows).

9 years agoMerge from 3.5
Steve Dower [Mon, 7 Sep 2015 05:31:26 +0000 (22:31 -0700)]
Merge from 3.5

9 years agoNull merge from 3.4
Steve Dower [Mon, 7 Sep 2015 05:31:08 +0000 (22:31 -0700)]
Null merge from 3.4

9 years agoReapplied change to test_warnings.py to test_warnings/__init__.py.
Steve Dower [Mon, 7 Sep 2015 05:30:40 +0000 (22:30 -0700)]
Reapplied change to test_warnings.py to test_warnings/__init__.py.

9 years agoMerge from 3.5.0 branch.
Steve Dower [Mon, 7 Sep 2015 05:27:42 +0000 (22:27 -0700)]
Merge from 3.5.0 branch.

9 years agoIssue #24917: time_strftime() buffer over-read.
Steve Dower [Mon, 7 Sep 2015 05:18:36 +0000 (22:18 -0700)]
Issue #24917: time_strftime() buffer over-read.

9 years agoMerged in stevedower/cpython350 (pull request #20)
Larry Hastings [Mon, 7 Sep 2015 05:10:22 +0000 (22:10 -0700)]
Merged in stevedower/cpython350 (pull request #20)

Issue #25005: Backout fix for #8232 because of use of unsafe subprocess.call(shell=True)

9 years agoIssue #25004: Merge 3.5 into 3.6
Martin Panter [Mon, 7 Sep 2015 04:07:06 +0000 (04:07 +0000)]
Issue #25004: Merge 3.5 into 3.6

9 years agoIssue #23406: Merge 3.5 into 3.6
Martin Panter [Mon, 7 Sep 2015 04:05:57 +0000 (04:05 +0000)]
Issue #23406: Merge 3.5 into 3.6

9 years agoIssue #25004: Merge 3.4 into 3.5
Martin Panter [Mon, 7 Sep 2015 04:04:40 +0000 (04:04 +0000)]
Issue #25004: Merge 3.4 into 3.5

9 years agoIssue #23406: Remove specific line number from susp-ignored.csv
Martin Panter [Mon, 7 Sep 2015 03:40:17 +0000 (03:40 +0000)]
Issue #23406: Remove specific line number from susp-ignored.csv

9 years agoIssue #25004: Handle out-of-disk-space error in LargeMmapTests
Martin Panter [Mon, 7 Sep 2015 02:57:47 +0000 (02:57 +0000)]
Issue #25004: Handle out-of-disk-space error in LargeMmapTests

Patch from John Beck.

9 years agoIssue #24917: time_strftime() buffer over-read.
Steve Dower [Mon, 7 Sep 2015 02:20:51 +0000 (19:20 -0700)]
Issue #24917: time_strftime() buffer over-read.

9 years agoIssue #23406: Merge 3.5 into 3.6
Martin Panter [Mon, 7 Sep 2015 02:12:08 +0000 (02:12 +0000)]
Issue #23406: Merge 3.5 into 3.6

9 years agoIssue #23406: Merge 3.4 into 3.5
Martin Panter [Mon, 7 Sep 2015 02:10:59 +0000 (02:10 +0000)]
Issue #23406: Merge 3.4 into 3.5

9 years agoIssue #23406: Clarify documentation on multiplying a sequence
Martin Panter [Mon, 7 Sep 2015 02:08:55 +0000 (02:08 +0000)]
Issue #23406: Clarify documentation on multiplying a sequence

Patch from Matheus Vieira Portela.

9 years agoMake asdl_c.py to generate Python-ast.c changed in issue #15989.
Serhiy Storchaka [Sun, 6 Sep 2015 20:29:04 +0000 (23:29 +0300)]
Make asdl_c.py to generate Python-ast.c changed in issue #15989.

9 years ago#23144: merge with 3.5.
Ezio Melotti [Sun, 6 Sep 2015 18:49:48 +0000 (21:49 +0300)]
#23144: merge with 3.5.

9 years ago#23144: merge with 3.4.
Ezio Melotti [Sun, 6 Sep 2015 18:44:45 +0000 (21:44 +0300)]
#23144: merge with 3.4.

9 years ago#23144: Make sure that HTMLParser.feed() returns all the data, even when convert_char...
Ezio Melotti [Sun, 6 Sep 2015 18:38:06 +0000 (21:38 +0300)]
#23144: Make sure that HTMLParser.feed() returns all the data, even when convert_charrefs is True.

9 years agoIssue #15989: Fixed some scarcely probable integer overflows.
Serhiy Storchaka [Sun, 6 Sep 2015 18:25:30 +0000 (21:25 +0300)]
Issue #15989: Fixed some scarcely probable integer overflows.
It is very unlikely that they can occur in real code for now.

9 years agoCloses Issue#22241: timezone.utc name is now plain 'UTC', not 'UTC-00:00'.
Alexander Belopolsky [Sun, 6 Sep 2015 17:07:21 +0000 (13:07 -0400)]
Closes Issue#22241: timezone.utc name is now plain 'UTC', not 'UTC-00:00'.

9 years agoFix, refactor and extend tests for shutil.make_archive().
Serhiy Storchaka [Sun, 6 Sep 2015 15:34:22 +0000 (18:34 +0300)]
Fix, refactor and extend tests for shutil.make_archive().

9 years agoFix, refactor and extend tests for shutil.make_archive().
Serhiy Storchaka [Sun, 6 Sep 2015 15:33:52 +0000 (18:33 +0300)]
Fix, refactor and extend tests for shutil.make_archive().

9 years agoFix, refactor and extend tests for shutil.make_archive().
Serhiy Storchaka [Sun, 6 Sep 2015 15:33:19 +0000 (18:33 +0300)]
Fix, refactor and extend tests for shutil.make_archive().

9 years agoUse support.change_cwd() in tests.
Serhiy Storchaka [Sun, 6 Sep 2015 11:15:40 +0000 (14:15 +0300)]
Use support.change_cwd() in tests.

9 years agoUse support.change_cwd() in tests.
Serhiy Storchaka [Sun, 6 Sep 2015 11:14:49 +0000 (14:14 +0300)]
Use support.change_cwd() in tests.

9 years agoUse support.change_cwd() in tests.
Serhiy Storchaka [Sun, 6 Sep 2015 11:13:25 +0000 (14:13 +0300)]
Use support.change_cwd() in tests.

9 years agoIssue #24305: Prevent import subsystem stack frames from being counted
Larry Hastings [Sun, 6 Sep 2015 07:39:37 +0000 (00:39 -0700)]
Issue #24305: Prevent import subsystem stack frames from being counted
by the warnings.warn(stacklevel=) parameter.

9 years agoBacking out 09b62202d9b7; the tests fail on Linux, and it needs a re-think.
Larry Hastings [Sun, 6 Sep 2015 07:31:02 +0000 (00:31 -0700)]
Backing out 09b62202d9b7; the tests fail on Linux, and it needs a re-think.

9 years agoIssue #24917: Backed out changeset 09b62202d9b7
Steve Dower [Sun, 6 Sep 2015 06:12:18 +0000 (23:12 -0700)]
Issue #24917: Backed out changeset 09b62202d9b7

9 years agoIssue #24917: Backed out changeset 09b62202d9b7
Steve Dower [Sun, 6 Sep 2015 06:11:53 +0000 (23:11 -0700)]
Issue #24917: Backed out changeset 09b62202d9b7

9 years agoBacked out changeset: a29b49d57769
Steve Dower [Sun, 6 Sep 2015 06:09:00 +0000 (23:09 -0700)]
Backed out changeset: a29b49d57769

9 years agoIssue #24917: time_strftime() Buffer Over-read. Patch by John Leitch.
Steve Dower [Sun, 6 Sep 2015 04:00:33 +0000 (21:00 -0700)]
Issue #24917: time_strftime() Buffer Over-read. Patch by John Leitch.

9 years agoNull merge with 3.4
Steve Dower [Sun, 6 Sep 2015 03:59:41 +0000 (20:59 -0700)]
Null merge with 3.4

9 years agoMerge from 3.5.0 release branch
Steve Dower [Sun, 6 Sep 2015 03:59:20 +0000 (20:59 -0700)]
Merge from 3.5.0 release branch

9 years agoIssue #24917: time_strftime() Buffer Over-read. Patch by John Leitch.
Steve Dower [Sun, 6 Sep 2015 03:55:34 +0000 (20:55 -0700)]
Issue #24917: time_strftime() Buffer Over-read. Patch by John Leitch.

9 years agoMerged in ncoghlan/cpython350 (pull request #17)
Larry Hastings [Sun, 6 Sep 2015 03:53:04 +0000 (20:53 -0700)]
Merged in ncoghlan/cpython350 (pull request #17)

9 years agomerge
Raymond Hettinger [Sun, 6 Sep 2015 00:06:18 +0000 (17:06 -0700)]
merge

9 years agoPrevent reentrant badness by deferring the decrefs as long as possible.
Raymond Hettinger [Sun, 6 Sep 2015 00:05:52 +0000 (17:05 -0700)]
Prevent reentrant badness by deferring the decrefs as long as possible.

9 years agoMerge with 3.5
Terry Jan Reedy [Sat, 5 Sep 2015 23:17:49 +0000 (19:17 -0400)]
Merge with 3.5

9 years agomerge from 3.4
Terry Jan Reedy [Sat, 5 Sep 2015 23:17:24 +0000 (19:17 -0400)]
merge from 3.4

9 years agoIssue #16180: Exit pdb if file has syntax error, instead of trapping user
Terry Jan Reedy [Sat, 5 Sep 2015 23:13:26 +0000 (19:13 -0400)]
Issue #16180: Exit pdb if file has syntax error, instead of trapping user
in an infinite loop.  Patch by Xavier de Gaye.

9 years agoIssue #24912: Prevent __class__ assignment to immutable built-in objects. (Merge...
Guido van Rossum [Sat, 5 Sep 2015 22:20:57 +0000 (15:20 -0700)]
Issue #24912: Prevent __class__ assignment to immutable built-in objects. (Merge 3.5 -> 3.6)

9 years agoIssue #24912: Prevent __class__ assignment to immutable built-in objects. (Merge...
Guido van Rossum [Sat, 5 Sep 2015 22:20:08 +0000 (15:20 -0700)]
Issue #24912: Prevent __class__ assignment to immutable built-in objects. (Merge 3.5.0 -> 3.5)

9 years agoIssue #24910: Windows MSIs now have unique display names.
Steve Dower [Sat, 5 Sep 2015 19:47:22 +0000 (12:47 -0700)]
Issue #24910: Windows MSIs now have unique display names.

9 years agoIssue #24910: Windows MSIs now have unique display names.
Steve Dower [Sat, 5 Sep 2015 19:47:06 +0000 (12:47 -0700)]
Issue #24910: Windows MSIs now have unique display names.

9 years agoIssue #24917: Moves NEWS entry under Library.
Steve Dower [Sat, 5 Sep 2015 19:23:00 +0000 (12:23 -0700)]
Issue #24917: Moves NEWS entry under Library.

9 years agoIssue #24917: time_strftime() Buffer Over-read. Patch by John Leitch.
Steve Dower [Sat, 5 Sep 2015 19:16:06 +0000 (12:16 -0700)]
Issue #24917: time_strftime() Buffer Over-read. Patch by John Leitch.

9 years agoIssue #25005: Backout fix for #8232 because of use of unsafe subprocess.call(shell...
Steve Dower [Sat, 5 Sep 2015 18:57:47 +0000 (11:57 -0700)]
Issue #25005: Backout fix for #8232 because of use of unsafe subprocess.call(shell=True)

9 years agoClose #24748: Restore imp.load_dynamic compatibility
Nick Coghlan [Sat, 5 Sep 2015 11:05:05 +0000 (21:05 +1000)]
Close #24748: Restore imp.load_dynamic compatibility

To resolve a compatibility problem found with py2exe and
pywin32, imp.load_dynamic() once again ignores previously loaded modules
to support Python modules replacing themselves with extension modules.

Patch by Petr Viktorin.

9 years agoIssue #23517: Skip a datetime test on Windows
Victor Stinner [Sat, 5 Sep 2015 08:50:20 +0000 (10:50 +0200)]
Issue #23517: Skip a datetime test on Windows

The test calls gmtime(-1)/localtime(-1) which is not supported on Windows.

9 years agoIssue #24912: Prevent __class__ assignment to immutable built-in objects.
Guido van Rossum [Sat, 5 Sep 2015 03:54:07 +0000 (20:54 -0700)]
Issue #24912: Prevent __class__ assignment to immutable built-in objects.

9 years agoIssue #23517: Fix implementation of the ROUND_HALF_UP rounding mode in
Victor Stinner [Fri, 4 Sep 2015 21:57:25 +0000 (23:57 +0200)]
Issue #23517: Fix implementation of the ROUND_HALF_UP rounding mode in
datetime.datetime.fromtimestamp() and datetime.datetime.utcfromtimestamp().
microseconds sign should be kept before rounding.

9 years agoNull merge (3.5.1 -> default).
Guido van Rossum [Fri, 4 Sep 2015 19:55:13 +0000 (12:55 -0700)]
Null merge (3.5.1 -> default).

9 years agoNull merge (Larry's 3.5 -> 3.5.1).
Guido van Rossum [Fri, 4 Sep 2015 19:54:36 +0000 (12:54 -0700)]
Null merge (Larry's 3.5 -> 3.5.1).

9 years agoFix issue #24635.
Guido van Rossum [Fri, 4 Sep 2015 19:15:54 +0000 (12:15 -0700)]
Fix issue #24635.

9 years agoIssue #24635: Fixed flakiness in test_typing.py. (Merge from 3.5.)
Guido van Rossum [Fri, 4 Sep 2015 19:05:03 +0000 (12:05 -0700)]
Issue #24635: Fixed flakiness in test_typing.py. (Merge from 3.5.)

9 years agoIssue #24635: Fixed flakiness in test_typing.py.
Guido van Rossum [Fri, 4 Sep 2015 19:00:06 +0000 (12:00 -0700)]
Issue #24635: Fixed flakiness in test_typing.py.

9 years agoMerge 3.5 (create_stdio)
Victor Stinner [Fri, 4 Sep 2015 15:30:48 +0000 (17:30 +0200)]
Merge 3.5 (create_stdio)

9 years agoMerge 3.4 (create_stdio)
Victor Stinner [Fri, 4 Sep 2015 15:29:57 +0000 (17:29 +0200)]
Merge 3.4 (create_stdio)