summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Issue #19753: Try to fix test_gdb on SystemZ buildbotVictor Stinner2013-11-241-0/+1
|
* Issue #19740: Use WaitForSingleObject() instead of trusting TimerOrWaitFired.Richard Oudkerk2013-11-241-2/+9
|
* Issue #19545: Avoid chained exceptions while passing stray % toSerhiy Storchaka2013-11-244-1/+12
|\ | | | | | | time.strptime(). Initial patch by Claudiu Popa.
| * Issue #19545: Avoid chained exceptions while passing stray % toSerhiy Storchaka2013-11-244-1/+12
| | | | | | | | time.strptime(). Initial patch by Claudiu Popa.
* | merge with 3.3Georg Brandl2013-11-241-0/+1
|\ \ | |/
| * Doc/Makefile: also do "make suspicious" during daily autobuildGeorg Brandl2013-11-241-0/+1
| |
* | Fix suspicious markup in the docs.Georg Brandl2013-11-247-20/+22
| |
* | Cosmetic fixesEli Bendersky2013-11-241-13/+8
| |
* | Null mergeAntoine Pitrou2013-11-240-0/+0
|\ \ | |/
| * Issue #19743: fix test_gdb on some optimized Python buildsAntoine Pitrou2013-11-241-4/+8
| |
* | Issue #19743: fix test_gdb on some optimized Python buildsAntoine Pitrou2013-11-241-4/+8
| |
* | Selectively re-enable framing testsAntoine Pitrou2013-11-242-11/+21
| |
* | Clinic: fix "self converters" with METH_NOARGS functions.Larry Hastings2013-11-242-42/+47
| |
* | Clinic: Add warning for untested (and unused in CPython!) format units.Larry Hastings2013-11-241-0/+1
| |
* | Fix a few markup problems in the new import doc.Georg Brandl2013-11-241-2/+4
| |
* | Issue #19741: cleanup tracemalloc_realloc()Victor Stinner2013-11-241-8/+15
| | | | | | | | Explain that unhandled error case is very unlikely
* | Remove code path in cpickle that does not exist in pickle.Alexandre Vassalotti2013-11-241-7/+1
| |
* | Issue #19741: tracemalloc: report tracemalloc_log_alloc() failure to the callerVictor Stinner2013-11-241-18/+29
| | | | | | | | for new allocations, but not when a memory block was already resized
* | Make Ellipsis and NotImplemented picklable through the reduce protocol.Alexandre Vassalotti2013-11-244-42/+24
| |
* | Make built-in methods picklable through the reduce protocol.Alexandre Vassalotti2013-11-243-41/+22
| |
* | Issue #19741: fix tracemalloc_log_alloc(), handle _Py_HASHTABLE_SET() failureVictor Stinner2013-11-241-7/+16
| |
* | Issue #3158: Relax new doctests a bit.Zachary Ware2013-11-241-4/+9
| | | | | | | | | | | | | | Apparently, the number of objects with docstrings in builtins varies with --with-pydebug (non-debug has one fewer). Also, skip the new tests entirely if built --without-doc-strings.
* | Merge headsZachary Ware2013-11-247-28/+65
|\ \
| * | Issue #3158: doctest can now find doctests in functions and methodsZachary Ware2013-11-247-28/+65
| | | | | | | | | | | | | | | | | | | | | | | | written in C. As a part of this, a few doctests have been added to the builtins module (on hex(), oct(), and bin()), a doctest has been fixed (hopefully on all platforms) on float, and test_builtins now runs doctests in builtins.
* | | Issue #19734: Also run pip version check in isolated modeNick Coghlan2013-11-241-2/+2
|/ /
* | Issue #19734: Ensure test_venv ignores PIP_REQUIRE_VIRTUALENVNick Coghlan2013-11-241-0/+4
| |
* | Disable annoying tests which doesn't work optimized pickles.Alexandre Vassalotti2013-11-241-11/+13
| |
* | Make framing optional in pickle protocol 4.Alexandre Vassalotti2013-11-243-197/+132
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This will allow us to control in the future whether to use framing or not. For example, we may want to turn it off for tiny pickle where it doesn't help. The change also improves performance slightly: ### fastpickle ### Min: 0.608517 -> 0.557358: 1.09x faster Avg: 0.798892 -> 0.694738: 1.15x faster Significant (t=3.45) Stddev: 0.17145 -> 0.12704: 1.3496x smaller Timeline: http://goo.gl/3xQE1J ### pickle_dict ### Min: 0.669920 -> 0.615271: 1.09x faster Avg: 0.733633 -> 0.645058: 1.14x faster Significant (t=5.05) Stddev: 0.12041 -> 0.02961: 4.0662x smaller Timeline: http://goo.gl/LpLSXI ### pickle_list ### Min: 0.397583 -> 0.368112: 1.08x faster Avg: 0.412784 -> 0.397223: 1.04x faster Significant (t=2.78) Stddev: 0.01518 -> 0.03653: 2.4068x larger Timeline: http://goo.gl/v39E59 ### unpickle_list ### Min: 0.692935 -> 0.594870: 1.16x faster Avg: 0.730012 -> 0.628395: 1.16x faster Significant (t=17.76) Stddev: 0.02720 -> 0.02995: 1.1012x larger Timeline: http://goo.gl/2P9AEt The following not significant results are hidden, use -v to show them: fastunpickle.
* | Issue #19734: ctypes resource management fixesNick Coghlan2013-11-241-6/+9
| |
* | Issue #19744 (temp workaround): without ssl, skip pip testNick Coghlan2013-11-241-0/+6
| |
* | Fix typo in and reformat OS X Installer ReadMeNed Deily2013-11-241-7/+8
| |
* | Fix make distclean for out-of-tree buildsChristian Heimes2013-11-241-2/+2
|\ \ | |/
| * Fix make distclean for out-of-tree buildsChristian Heimes2013-11-241-2/+2
| |
* | Issue #19734: venv still needs isolated modeNick Coghlan2013-11-241-1/+1
| |
* | Issue 19734: better diagnostics for test_venv failuresNick Coghlan2013-11-242-6/+18
| |
* | Fix inspect.signature tests for builtins when docstrings are compiled out.Larry Hastings2013-11-242-1/+9
| |
* | Try to fix test_tarfile under WindowsAntoine Pitrou2013-11-241-1/+1
| |
* | Build a list of supported test tarfiles dynamically for CLI "test" commandSerhiy Storchaka2013-11-241-3/+6
| | | | | | | | tests (issue13477).
* | mergeChristian Heimes2013-11-241-2/+3
|\ \
| * | Don't attempt to run the _opcode test if it wasn't built.Larry Hastings2013-11-241-2/+3
| | |
* | | Add _opcode to Windows build envChristian Heimes2013-11-242-0/+3
|/ /
* | Issue #13477: Added command line interface to the tarfile module.Serhiy Storchaka2013-11-234-1/+323
| | | | | | | | Original patch by Berker Peksag.
* | Issue #19674: inspect.signature() now produces a correct signatureLarry Hastings2013-11-2318-136/+343
| | | | | | | | for some builtins.
* | Keep asyncio working with Python 3.3 too.Guido van Rossum2013-11-231-2/+9
| |
* | asyncio: Change bounded semaphore into a subclass, like ↵Guido van Rossum2013-11-232-18/+20
| | | | | | | | threading.[Bounded]Semaphore.
* | Issue #19358: "make clinic" now runs the Argument Clinic preprocessorLarry Hastings2013-11-233-3/+36
| | | | | | | | over all CPython source files.
* | Issue #19730: Argument Clinic now supports all the existing PyArgLarry Hastings2013-11-239-155/+466
| | | | | | | | | | "format units" as legacy converters, as well as two new features: "self converters" and the "version" directive.
* | Issue #19722: Added opcode.stack_effect(), which accuratelyLarry Hastings2013-11-238-8/+177
| | | | | | | | computes the stack effect of bytecode instructions.
* | Update Tcl/Tk to 8.6.1.Martin v. Löwis2013-11-237-28/+28
| |
* | Issue #19735: Implement private function ssl._create_stdlib_context() toChristian Heimes2013-11-2311-55/+100
| | | | | | | | | | create SSLContext objects in Python's stdlib module. It provides a single configuration point and makes use of SSLContext.load_default_certs().