summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* asyncio: Reincarnate CoroWrapper's docstring as a comment.Guido van Rossum2014-01-161-0/+2
|
* asyncio doc: replace "coroutine" with "coroutine object" or "coroutine function"Victor Stinner2014-01-164-39/+41
|
* asyncio: add a new "Develop with asyncio" section to the documentationVictor Stinner2014-01-163-0/+219
|
* Issue #19936: Remove executable bits from C source files and several forgottenSerhiy Storchaka2014-01-169-0/+0
|\ | | | | | | test files.
| * Issue #19936: Remove executable bits from C source files and several forgottenSerhiy Storchaka2014-01-1610-0/+0
| | | | | | | | test files.
* | Issue #19936: Added executable bits or shebang lines to Python scripts whichSerhiy Storchaka2014-01-1692-70/+8
|\ \ | |/ | | | | | | | | | | requires them. Disable executable bits and shebang lines in test and benchmark files in order to prevent using a random system python, and in source files of modules which don't provide command line interface. Fixed shebang lines in the unittestgui and checkpip scripts.
| * Merge headsSerhiy Storchaka2014-01-162-17/+17
| |\
| * | Issue #19936: Added executable bits or shebang lines to Python scripts whichSerhiy Storchaka2014-01-1684-66/+7
| | | | | | | | | | | | | | | | | | | | | requires them. Disable executable bits and shebang lines in test and benchmark files in order to prevent using a random system python, and in source files of modules which don't provide command line interface. Fixed shebang line to use python3 executable in the unittestgui script.
* | | merge 3.3 (#20272)Benjamin Peterson2014-01-161-16/+16
|\ \ \ | | |/ | |/|
| * | linkify chain.from_iterable (closes #20272)Benjamin Peterson2014-01-161-16/+16
| | |
* | | merge 3.3 (#20278)Benjamin Peterson2014-01-161-1/+1
|\ \ \ | |/ /
| * | update pysqlite website (closes #20278)Benjamin Peterson2014-01-161-1/+1
| |/
* | Merge from 3.3.Stefan Krah2014-01-163-6/+0
|\ \ | |/
| * Issue #19936: Disable shebang lines in order to prevent using a randomStefan Krah2014-01-163-6/+0
| | | | | | | | system python.
* | Closes #20235: Report file and line on unexpected exceptions in Argument Clinic.Georg Brandl2014-01-161-1/+6
| |
* | asyncio: Fix CoroWrapper (fix my previous commit)Victor Stinner2014-01-161-3/+1
| | | | | | | | Add __name__ and __doc__ to __slots__
* | asyncio: Fix a typo in CoroWrapperVictor Stinner2014-01-161-1/+1
| | | | | | | | __slot__ => __slots__
* | Merged documentation update from 3.3.Vinay Sajip2014-01-153-2/+94
|\ \ | |/
| * Added cookbook entry on alternative formatting styles.Vinay Sajip2014-01-153-2/+94
| |
* | Merged documentation update from 3.3.Vinay Sajip2014-01-151-8/+9
|\ \ | |/
| * Clarified documentation note on module-level convenience functions.Vinay Sajip2014-01-151-8/+9
| |
* | Issue #14455: Fix some issues with plistlibRonald Oussoren2014-01-156-71/+138
| | | | | | | | | | | | | | | | | | | | * Negative integer support in binary plists was broken * Better exception for invalid data * Fix the versionadded/versionchanged markup in the documentation * Add the interface cleanup to what's new for 3.4
* | Issue #20268: Argument Clinic now supports cloning the parametersLarry Hastings2014-01-153-0/+92
| | | | | | | | and return converter from existing functions.
* | Fix minor bug in dict.__contains__ docstring.Meador Inge2014-01-141-3/+3
| | | | | | | | | | When dict got clinicized in 8fde1a2c94dc for Issue #16612 an erroneous trailing quote was left in the clinic docstring summary line.
* | Issue #20255: Update the about and bugs pages.Zachary Ware2014-01-143-16/+28
|\ \ | |/
| * Issue #20255: Update the about and bugs pages.Zachary Ware2014-01-143-16/+28
| |
* | Replace assert with a proper errorAntoine Pitrou2014-01-141-2/+4
| |
* | Clinic-ize the crypt module. Derby!Antoine Pitrou2014-01-141-15/+56
| |
* | improve an error message in clinicAntoine Pitrou2014-01-141-1/+4
| |
* | Closes #20253: Merge typo fixZachary Ware2014-01-142-2/+5
|\ \ | |/
| * Issue #20253: Fixed a typo in the ipaddress docs that advertised anZachary Ware2014-01-142-2/+5
| | | | | | | | illegal attribute name. Found by INADA Naoki.
* | Merge typo fix.Zachary Ware2014-01-141-1/+1
|\ \ | |/
| * Fix typo. Found by David Pesta on docs@.Zachary Ware2014-01-141-1/+1
| |
* | Merge typo fix.Zachary Ware2014-01-141-1/+1
|\ \ | |/
| * Fix typo. Found by David Pesta on docs@.Zachary Ware2014-01-141-1/+1
| |
* | Fix typo in comment.Eric V. Smith2014-01-141-1/+1
| |
* | mergeGeorg Brandl2014-01-141-1/+1
|\ \
| * | small grammar fix.Georg Brandl2014-01-121-1/+1
| | |
* | | merge with 3.3Georg Brandl2014-01-142-2/+2
|\ \ \ | | |/ | |/|
| * | Closes #20258: Sphinx toolchain: move back to Jinja2 2.3.1 with support for ↵Georg Brandl2014-01-142-2/+2
| | | | | | | | | | | | Py2.5.
* | | merge 3.3Benjamin Peterson2014-01-141-0/+7
|\ \ \ | |/ /
| * | add test for #20251Benjamin Peterson2014-01-141-0/+7
| | |
* | | merge 3.3 (#20251)Benjamin Peterson2014-01-141-1/+0
|\ \ \ | |/ /
| * | remove overly strict assertion (closes #20251)Benjamin Peterson2014-01-141-1/+0
| | |
* | | merge 3.3 (#20250)Benjamin Peterson2014-01-141-1/+3
|\ \ \ | |/ /
| * | correct defaultdict signature in docstring (closes #20250)Benjamin Peterson2014-01-141-1/+3
| | | | | | | | | | | | Patch from Andrew Barnert.
* | | merge 3.3 (#20246)Benjamin Peterson2014-01-140-0/+0
|\ \ \ | |/ /
| * | merge 3.2 (#20246)Benjamin Peterson2014-01-144-0/+16
| |\ \
| | * | complain when nbytes > buflen to fix possible buffer overflow (closes #20246)Benjamin Peterson2014-01-144-0/+16
| | | |
* | | | merge 3.3 (#20246)Benjamin Peterson2014-01-144-0/+16
| | | |