summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* asyncio: fix 2nd task exampleVictor Stinner2013-12-101-16/+16
|
* asyncio doc: rewrite the callback hello world to use call_soon() instead of aVictor Stinner2013-12-101-1/+1
| | | | direct call.
* assyncio doc: rewrite, improve and move coroutine, Future and Task examplesVictor Stinner2013-12-101-142/+152
|
* (Merge 3.3) Issue #19932: Fix typo in import.h, missing whitespaces in ↵Victor Stinner2013-12-102-4/+6
|\ | | | | | | function prototypes.
| * Issue #19932: Fix typo in import.h, missing whitespaces in function prototypes.Victor Stinner2013-12-102-4/+6
| |
* | Fix typo.Stefan Krah2013-12-091-1/+1
| |
* | Fix whitespace.Stefan Krah2013-12-091-1/+1
| |
* | Merge 3.3.Stefan Krah2013-12-0936-36/+69
|\ \ | |/
| * Add libmpdec license.Stefan Krah2013-12-081-0/+33
| |
| * Fix two typos.Stefan Krah2013-12-082-2/+2
| |
| * Missed one copyright.Stefan Krah2013-12-081-1/+1
| |
| * Update copyright. The four year increment is intentional (to save work).Stefan Krah2013-12-0833-33/+33
| |
* | Issue #15475: Add __sizeof__ implementations for itertools objects.Serhiy Storchaka2013-12-093-1/+95
| |
* | asyncio doc: explain why the loop is running twiceVictor Stinner2013-12-091-29/+36
| |
* | asyncio: another Future example using add_done_callback()Victor Stinner2013-12-091-2/+34
| |
* | asyncio doc: add an example with FutureVictor Stinner2013-12-091-0/+24
| |
* | Issue #19817: Fix print_exception(), clear the exception on errorVictor Stinner2013-12-091-3/+5
| |
* | Backed out changeset c4c1c4bc8086Victor Stinner2013-12-091-1/+1
| |
* | Issue #19876: Run also ↵Victor Stinner2013-12-091-1/+1
| | | | | | | | | | | | test_selectors.test_unregister_after_fd_close_and_reuse() on Windows os.dup2() is available on Windows.
* | Close #19880: Fix a reference leak in unittest.TestCase. Explicitly breakVictor Stinner2013-12-093-1/+42
| | | | | | | | reference cycles between frames and the _Outcome instance.
* | Fix #19830: Fix a ResourceWarning in test_poplib.Victor Stinner2013-12-091-1/+1
| | | | | | | | Patch written by Vajrasky Kok.
* | (Merge 3.3) Issue #17429: Oops, remove unused importVictor Stinner2013-12-081-1/+0
|\ \ | |/
| * Issue #17429: Oops, remove unused importVictor Stinner2013-12-081-1/+0
| |
* | Issue #17429: some PEP 8 compliance fixes for the platform modules, add ↵Victor Stinner2013-12-081-111/+113
| | | | | | | | whitespaces
* | (Merge 3.3) Issue #17429: platform.linux_distribution() now decodes files fromVictor Stinner2013-12-084-2/+30
|\ \ | |/ | | | | | | | | | | the UTF-8 encoding with the surrogateescape error handler, instead of decoding from the locale encoding in strict mode. It fixes the function on Fedora 19 which is probably the first major distribution release with a non-ASCII name. Patch written by Toshio Kuratomi.
| * Issue #17429: platform.linux_distribution() now decodes files from the UTF-8Victor Stinner2013-12-084-2/+30
| | | | | | | | | | | | | | encoding with the surrogateescape error handler, instead of decoding from the locale encoding in strict mode. It fixes the function on Fedora 19 which is probably the first major distribution release with a non-ASCII name. Patch written by Toshio Kuratomi.
* | Fixes issue #19929: Call os.read with 32768 within subprocess.PopenGregory P. Smith2013-12-082-1/+5
|\ \ | |/ | | | | | | communicate rather than 4096 for efficiency. A microbenchmark shows Linux and OS X both using ~50% less cpu time this way.
| * Fixes issue #19929: Call os.read with 32768 within subprocess.PopenGregory P. Smith2013-12-082-1/+5
| | | | | | | | | | communicate rather than 4096 for efficiency. A microbenchmark shows Linux and OS X both using ~50% less cpu time this way.
* | Closes #18430: Document that peek() may change the position of the underlyingNadeem Vawda2013-12-083-0/+15
|\ \ | |/ | | | | file for the BZ2File, GzipFile and LZMAFile classes.
| * #18430: Document that peek() may change the position of the underlying file forNadeem Vawda2013-12-083-0/+15
| | | | | | | | the BZ2File, GzipFile and LZMAFile classes.
* | Issue #19535: Fixed test_docxmlrpc, test_functools, test_inspect, andSerhiy Storchaka2013-12-085-4/+14
|\ \ | |/ | | | | test_statistics when python is run with -OO.
| * Issue #19535: Fixed test_docxmlrpc when python is run with -OO.Serhiy Storchaka2013-12-082-2/+6
| |
* | - Issue #19736: Add module-level statvfs constants defined for GNU/glibcdoko@ubuntu.com2013-12-083-0/+47
| | | | | | | | based systems.
* | Attempt to fix OpenIndiana build issue introduced by #19922Christian Heimes2013-12-082-6/+18
| |
* | Issue #19343: Expose FreeBSD-specific APIs in resource module. Original ↵Christian Heimes2013-12-084-0/+51
| | | | | | | | patch by Koobs.
* | Fix test_selectors failure introduced by 39e7995f9ad1.Charles-François Natali2013-12-081-0/+1
| |
* | Remove mentions of Python 2.x and being externally maintained fromGregory P. Smith2013-12-081-5/+2
|\ \ | |/ | | | | | | the bundled json module. Replace that with a mention of it being a version of the externally maintained simplejson module.
| * Remove mentions of Python 2.x and being externally maintained fromGregory P. Smith2013-12-081-5/+2
| | | | | | | | | | the bundled json module. Replace that with a mention of it being a version of the externally maintained simplejson module.
* | Issue #19926: Removed unneeded test_main from test_abstract_numbers.Zachary Ware2013-12-082-4/+3
|\ \ | |/ | | | | Patch by Vajrasky Kok.
| * Issue #19926: Removed unneeded test_main from test_abstract_numbers.Zachary Ware2013-12-082-4/+3
| | | | | | | | Patch by Vajrasky Kok.
* | Issue 19572: More silently skipped tests explicitly skipped.Zachary Ware2013-12-0835-146/+139
|\ \ | |/
| * Normalize whitespaceZachary Ware2013-12-081-1/+1
| |
| * Issue 19572: More silently skipped tests explicitly skipped.Zachary Ware2013-12-0834-138/+126
| |
* | Fixes issue #19506: Use a memoryview to avoid a data copy when piping dataGregory P. Smith2013-12-082-2/+8
|\ \ | |/ | | | | to stdin within subprocess.Popen.communicate. 5-10% less cpu usage.
| * Fixes issue #19506: Use a memoryview to avoid a data copy when piping dataGregory P. Smith2013-12-082-2/+8
| | | | | | | | to stdin within subprocess.Popen.communicate. 5-10% less cpu usage.
* | Issue #19758: silence PendingDeprecationWarnings in test_importlib.Eric Snow2013-12-081-4/+8
| |
* | News item for issue 19876.Guido van Rossum2013-12-081-0/+3
| |
* | Silently ignore unregistering closed files. Fixes issue 19876. With docs and ↵Guido van Rossum2013-12-073-48/+129
| | | | | | | | slight test refactor.
* | Issue #19922: define _INCLUDE__STDC_A1_SOURCE in HP-UX to include mbstate_tChristian Heimes2013-12-074-0/+22
| | | | | | | | for mbrtowc().
* | Merge.Charles-François Natali2013-12-070-0/+0
|\ \ | |/