Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #20532: Tests which use _testcapi now are marked as CPython only. | Serhiy Storchaka | 2014-02-07 | 28 | -116/+280 |
|\ | |||||
| * | Issue #20532: Tests which use _testcapi now are marked as CPython only. | Serhiy Storchaka | 2014-02-07 | 24 | -104/+235 |
| | | |||||
| * | Silence BytesWarning (backport 267a4d4d9d65). | Serhiy Storchaka | 2014-02-06 | 1 | -5/+6 |
| | | |||||
* | | asyncio.tasks: Fix as_completed, gather & wait to work with duplicate coroutines | Yury Selivanov | 2014-02-07 | 2 | -11/+51 |
| | | |||||
* | | Close issue20534: test_enum now tests all supported pickle protocols (2 - ↵ | Ethan Furman | 2014-02-07 | 1 | -24/+36 |
| | | | | | | | | HIGHEST_PROTOCOL, inclusive). | ||||
* | | Issue #3158: Provide a couple of fallbacks for in case a method_descriptor | Zachary Ware | 2014-02-06 | 1 | -1/+7 |
| | | | | | | | | doesn't have __objclass__. | ||||
* | | Issue #20363. Fixed BytesWarning triggerred by test suite. | Serhiy Storchaka | 2014-02-06 | 4 | -5/+5 |
|\ \ | |/ | | | | | Patch by Berker Peksag. | ||||
| * | Issue #20363. Fixed BytesWarning triggerred by test suite. | Serhiy Storchaka | 2014-02-06 | 3 | -4/+4 |
| | | | | | | | | Patch by Berker Peksag. | ||||
* | | Catch deprecation warnings emitted when non-integers are formatted with %c, %o | Serhiy Storchaka | 2014-02-06 | 2 | -6/+12 |
| | | | | | | | | and %x (introduced in issue #19995). | ||||
* | | asyncio.tasks.gather: Fix docstring | Yury Selivanov | 2014-02-06 | 1 | -1/+1 |
| | | |||||
* | | Issue #14455: fix handling of unsigned long long values for binary plist files | Ronald Oussoren | 2014-02-06 | 2 | -70/+73 |
| | | | | | | | | | | | | | | | | | | | | Values in the range of an unsigned long long, but outside of the range of a signed long long were serialized as a negative value. Due to a bug in PyObjC my test scripts indicated that the previous behavior matched Apple's plist code, instead the handle large unsigned values correctly. The change to plistlib.py is from a patch by Serhiy. | ||||
* | | Issue #20520: Fixed readline test in test_codecs. | Serhiy Storchaka | 2014-02-06 | 1 | -6/+15 |
|\ \ | |/ | |||||
| * | Issue #20520: Fixed readline test in test_codecs. | Serhiy Storchaka | 2014-02-06 | 1 | -6/+15 |
| | | |||||
* | | asyncio.streams.StreamReader: Add 'at_eof()' method | Yury Selivanov | 2014-02-06 | 2 | -0/+19 |
| | | |||||
* | | asyncio.streams: Use bytebuffer in StreamReader; Add assertion in feed_data | Yury Selivanov | 2014-02-05 | 2 | -76/+76 |
| | | |||||
* | | Issue #19920: TarFile.list() no longer fails when outputs a listing | Serhiy Storchaka | 2014-02-05 | 2 | -29/+116 |
|\ \ | |/ | | | | | | | containing non-encodable characters. Added tests for TarFile.list(). Based on patch by Vajrasky Kok. | ||||
| * | Issue #19920: TarFile.list() no longer fails when outputs a listing | Serhiy Storchaka | 2014-02-05 | 2 | -11/+95 |
| | | | | | | | | | | containing non-encodable characters. Added tests for TarFile.list(). Based on patch by Vajrasky Kok. | ||||
* | | TestNamedTuple.test_pickle was only testing through protocol 2. Changed to ↵ | Eric V. Smith | 2014-02-05 | 1 | -1/+1 |
| | | | | | | | | have it automatically test through the most recent version. | ||||
* | | Issue #20053: new test to check an assumption | Nick Coghlan | 2014-02-05 | 1 | -0/+7 |
| | | |||||
* | | Issue #20498: Fixed io.StringIO tests for newline='\n'. Added new tests. | Serhiy Storchaka | 2014-02-05 | 1 | -1/+36 |
|\ \ | |/ | |||||
| * | Issue #20498: Fixed io.StringIO tests for newline='\n'. Added new tests. | Serhiy Storchaka | 2014-02-05 | 1 | -1/+36 |
| | | |||||
* | | asyncio: Cosmetic improvement to test__run_once_logging() mock argument. | Guido van Rossum | 2014-02-04 | 1 | -5/+3 |
| | | |||||
* | | Close #20053: ignore default pip config settings | Nick Coghlan | 2014-02-04 | 3 | -12/+50 |
| | | | | | | | | | | | | ensurepip now sets PIP_CONFIG_FILE to os.devnull before import pip from the wheel file. This also ensures venv ignores the default settings when bootstrapping pip. | ||||
* | | Close #20404: blacklist non-text encodings in io.TextIOWrapper | Nick Coghlan | 2014-02-04 | 2 | -8/+30 |
| | | | | | | | | | | | | | | | | | | - io.TextIOWrapper (and hence the open() builtin) now use the internal codec marking system added for issue #19619 - also tweaked the C code to only look up the encoding once, rather than multiple times - the existing output type checks remain in place to deal with unmarked third party codecs. | ||||
* | | asyncio: Fix _ProactorWritePipeTransport._pipe_closed() | Victor Stinner | 2014-02-04 | 1 | -1/+4 |
| | | | | | | | | | | Do nothing if the pipe is already closed. _loop_writing() may call _force_close() when it gets ConnectionResetError. | ||||
* | | Oops, undo unwanted changes in test_asyncio: mistakes of my the last sync with | Victor Stinner | 2014-02-03 | 3 | -8/+17 |
| | | | | | | | | Tulip (changeset d7ac90c0463a) | ||||
* | | asyncio.subprocess: Replace Process.get_subprocess() method with a | Victor Stinner | 2014-02-03 | 2 | -10/+11 |
| | | | | | | | | Process.subprocess read-only property | ||||
* | | Issue #20474: Fix "unexpected success" test_socket failures on OS X 10.7+. | Ned Deily | 2014-02-03 | 1 | -4/+4 |
|\ \ | |/ | |||||
| * | Issue #20474: Fix "unexpected success" test_socket failures on OS X 10.7+. | Ned Deily | 2014-02-03 | 1 | -4/+4 |
| | | |||||
* | | Skip expr* tests for large integers for Tcl <8.5. | Serhiy Storchaka | 2014-02-03 | 1 | -4/+8 |
|\ \ | |/ | | | | | | | The '**' operator is available only since 8.5 and in any case such large integers are not supported on Tcl <8.5. | ||||
| * | Skip expr* tests for large integers for Tcl <8.5. | Serhiy Storchaka | 2014-02-03 | 1 | -4/+8 |
| | | | | | | | | | | The '**' operator is available only since 8.5 and in any case such large integers are not supported on Tcl <8.5. | ||||
* | | Issue #20426: When passing the re.DEBUG flag, re.compile() displays the ↵ | Antoine Pitrou | 2014-02-03 | 2 | -8/+23 |
|\ \ | |/ | | | | | debug output every time it is called, regardless of the compilation cache. | ||||
| * | Issue #20426: When passing the re.DEBUG flag, re.compile() displays the ↵ | Antoine Pitrou | 2014-02-03 | 2 | -8/+24 |
| | | | | | | | | debug output every time it is called, regardless of the compilation cache. | ||||
* | | Issue #19761: Fixed Tkinter tests on OS X. | Serhiy Storchaka | 2014-02-03 | 2 | -7/+14 |
|\ \ | |/ | |||||
| * | Issue #19761: Fixed Tkinter tests on OS X. | Serhiy Storchaka | 2014-02-03 | 2 | -7/+14 |
| | | |||||
* | | Issue #20368: The null character now correctly passed from Tcl to Python. | Serhiy Storchaka | 2014-02-03 | 2 | -10/+58 |
|\ \ | |/ | | | | | Improved error handling in variables-related commands. | ||||
| * | Issue #20368: The null character now correctly passed from Tcl to Python. | Serhiy Storchaka | 2014-02-03 | 2 | -10/+58 |
| | | | | | | | | Improved error handling in variables-related commands. | ||||
* | | Issue #20368: Add tests for Tkinter methods exprstring(), exprdouble(), | Serhiy Storchaka | 2014-02-03 | 1 | -0/+135 |
|\ \ | |/ | | | | | exprlong() and exprboolean(). | ||||
| * | Issue #20368: Add tests for Tkinter methods exprstring(), exprdouble(), | Serhiy Storchaka | 2014-02-03 | 1 | -0/+135 |
| | | | | | | | | exprlong() and exprboolean(). | ||||
* | | inspect.signature: Add (restore) support for builtin classes #20473 | Yury Selivanov | 2014-02-03 | 2 | -131/+190 |
| | | |||||
* | | Issue #20472: test_asyncio: skip PTY tests on Mac OS X older than 10.6 | Victor Stinner | 2014-02-02 | 1 | -0/+6 |
| | | |||||
* | | Issue #20435: Fix _pyio.StringIO.getvalue() to take into account newline ↵ | Antoine Pitrou | 2014-02-02 | 2 | -1/+16 |
|\ \ | |/ | | | | | translation settings. | ||||
| * | Issue #20435: Fix _pyio.StringIO.getvalue() to take into account newline ↵ | Antoine Pitrou | 2014-02-02 | 2 | -1/+16 |
| | | | | | | | | translation settings. | ||||
* | | Issue #19320: Fixed split/splitlist tests in test_tcl for Tcl 8.5.0-8.5.5. | Serhiy Storchaka | 2014-02-02 | 1 | -5/+28 |
|\ \ | |/ | |||||
| * | Issue #19320: Fixed split/splitlist tests in test_tcl for Tcl 8.5.0-8.5.5. | Serhiy Storchaka | 2014-02-02 | 1 | -5/+28 |
| | | |||||
* | | merge 3.3 (#20102) | Benjamin Peterson | 2014-02-02 | 1 | -11/+9 |
|\ \ | |/ | |||||
| * | use with statement to ensure zipfile is always closed (closes #20102) | Benjamin Peterson | 2014-02-02 | 1 | -11/+9 |
| | | |||||
* | | inspect.signature: Use 'inspect.isbuiltin' in 'Signature.from_builtin' | Yury Selivanov | 2014-02-02 | 1 | -1/+2 |
| | | |||||
* | | whatsnew: filecmp.clear_cache, and reword description of cache in docs. | R David Murray | 2014-02-02 | 1 | -2/+2 |
| | | |||||
* | | Update the python.gif icon for the Idle classbrowser and pathbowser | Terry Jan Reedy | 2014-02-02 | 1 | -0/+0 |
|\ \ | |/ | | | | | from the old green snake to the new new blue and yellow snakes. |