summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Issue #17162: Fix compilation, replace non-breaking space with an ASCII spaceVictor Stinner2014-02-041-1/+1
|
* Issue #17162: Add PyType_GetSlot.Martin v. Löwis2014-02-046-2/+30
|
* asyncio: Fix _ProactorWritePipeTransport._pipe_closed()Victor Stinner2014-02-041-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 withVictor Stinner2014-02-033-8/+17
| | | | Tulip (changeset d7ac90c0463a)
* asyncio doc: add an example of asyncio.subprocess with communicate() and wait()Victor Stinner2014-02-031-0/+40
|
* asyncio.subprocess: Replace Process.get_subprocess() method with aVictor Stinner2014-02-033-27/+28
| | | | Process.subprocess read-only property
* Issue #20474: Fix "unexpected success" test_socket failures on OS X 10.7+.Ned Deily2014-02-032-4/+6
|\
| * Issue #20474: Fix "unexpected success" test_socket failures on OS X 10.7+.Ned Deily2014-02-032-4/+6
| |
* | Skip expr* tests for large integers for Tcl <8.5.Serhiy Storchaka2014-02-031-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 Storchaka2014-02-031-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 Pitrou2014-02-033-8/+26
|\ \ | |/ | | | | 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 Pitrou2014-02-033-8/+27
| | | | | | | | debug output every time it is called, regardless of the compilation cache.
* | Merge headsSerhiy Storchaka2014-02-031-1/+1
|\ \
| * | remove extra backtickBenjamin Peterson2014-02-031-1/+1
| | |
* | | Issue #19761: Fixed Tkinter tests on OS X.Serhiy Storchaka2014-02-032-7/+14
|\ \ \ | | |/ | |/|
| * | Issue #19761: Fixed Tkinter tests on OS X.Serhiy Storchaka2014-02-032-7/+14
| | |
* | | Issue #20368: The null character now correctly passed from Tcl to Python.Serhiy Storchaka2014-02-034-78/+175
|\ \ \ | |/ / | | | | | | Improved error handling in variables-related commands.
| * | Issue #20368: The null character now correctly passed from Tcl to Python.Serhiy Storchaka2014-02-034-78/+175
| | | | | | | | | | | | Improved error handling in variables-related commands.
* | | Issue #20368: Add tests for Tkinter methods exprstring(), exprdouble(),Serhiy Storchaka2014-02-031-0/+135
|\ \ \ | |/ / | | / | |/ |/| exprlong() and exprboolean().
| * Issue #20368: Add tests for Tkinter methods exprstring(), exprdouble(),Serhiy Storchaka2014-02-031-0/+135
| | | | | | | | exprlong() and exprboolean().
* | remove code which does nothing but cause refleaksBenjamin Peterson2014-02-031-4/+0
| |
* | Merge from 3.3Andrew Kuchling2014-02-031-2/+1
|\ \ | |/
| * Use different wordAndrew Kuchling2014-02-031-2/+1
| |
* | Merged documentation update from 3.3.Vinay Sajip2014-02-031-0/+87
|\ \ | |/
| * Added cookbook entry on logging filter configuration using dictConfig().Vinay Sajip2014-02-031-0/+87
| |
* | inspect.signature: Add (restore) support for builtin classes #20473Yury Selivanov2014-02-032-131/+190
| |
* | whatsnew: read/write on closed SSL socket exception has changed.R David Murray2014-02-031-1/+5
| |
* | whatsnew: html.escape 10x faster, _gestalt module gone.R David Murray2014-02-031-1/+8
| |
* | Issue #20472: asyncio: Adjust the note about Mac OS X on PTY, specify that itVictor Stinner2014-02-031-1/+2
| | | | | | | | requires at least Mac OS X 10.6.
* | Issue #20472: test_asyncio: skip PTY tests on Mac OS X older than 10.6Victor Stinner2014-02-031-0/+6
| |
* | Issue #20435: Fix _pyio.StringIO.getvalue() to take into account newline ↵Antoine Pitrou2014-02-023-1/+19
|\ \ | |/ | | | | translation settings.
| * Issue #20435: Fix _pyio.StringIO.getvalue() to take into account newline ↵Antoine Pitrou2014-02-023-1/+19
| | | | | | | | translation settings.
* | Issue #19990: Install test/imghdrdata.Ned Deily2014-02-021-0/+1
|\ \ | |/
| * Issue #19990: Install test/imghdrdata.Ned Deily2014-02-021-0/+1
| |
* | Issue #20423: fix documentation of io.StringIO's newline parameterAntoine Pitrou2014-02-021-2/+3
|\ \ | |/
| * Issue #20423: fix documentation of io.StringIO's newline parameterAntoine Pitrou2014-02-021-2/+3
| |
* | asyncio: document the new asyncio.subprocess moduleVictor Stinner2014-02-024-3/+149
| |
* | Issue #19320: Fixed split/splitlist tests in test_tcl for Tcl 8.5.0-8.5.5.Serhiy Storchaka2014-02-021-5/+28
|\ \ | |/
| * Issue #19320: Fixed split/splitlist tests in test_tcl for Tcl 8.5.0-8.5.5.Serhiy Storchaka2014-02-021-5/+28
| |
* | merge 3.3 (#20102)Benjamin Peterson2014-02-021-11/+9
|\ \ | |/
| * use with statement to ensure zipfile is always closed (closes #20102)Benjamin Peterson2014-02-021-11/+9
| |
* | whatsnew: hmac accepts more bytes types, importlib decode_source, stat in C.R David Murray2014-02-022-1/+19
| |
* | whatsnew: -m <namespace package>, plus 'using' doc updates.R David Murray2014-02-022-1/+12
| |
* | inspect.signature: Use 'inspect.isbuiltin' in 'Signature.from_builtin'Yury Selivanov2014-02-021-1/+2
| |
* | whatsnew: some more importlib replacements for imp functions.R David Murray2014-02-021-2/+10
| | | | | | | | get_magic->util.MAGIC_NUMBER, source_from_cache, and cache_from_source.
* | whatsnew: filecmp.clear_cache, and reword description of cache in docs.R David Murray2014-02-023-6/+17
| |
* | whatsnew: fix importlib.reload entry.R David Murray2014-02-021-3/+3
| | | | | | | | | | Turns out I committed a work-in-progress entry because of a time gap between when I wrote it and when I committed.
* | asyncio doc: add "asyncio-" prefix to referencesVictor Stinner2014-02-025-16/+16
| |
* | Update the python.gif icon for the Idle classbrowser and pathbowserTerry Jan Reedy2014-02-012-0/+3
|\ \ | |/ | | | | from the old green snake to the new new blue and yellow snakes.
| * Update the python.gif icon for the Idle classbrowser and pathbowserTerry Jan Reedy2014-02-012-0/+3
| | | | | | | | from the old green snake to the new new blue and yellow snakes.