summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Replace Py_NotImplemented returns with the macro form Py_RETURN_NOTIMPLEMENTED.Brian Curtin2011-08-1124-162/+87
| | | | The macro was introduced in #12724.
* Add Py_RETURN_NOTIMPLEMENTED macro. Fixes #12724.Brian Curtin2011-08-111-0/+4
|
* 2.x syntaxBenjamin Peterson2011-08-091-1/+1
|
* make this work on 2.4Benjamin Peterson2011-08-091-5/+17
|
* make this work with py2.5Benjamin Peterson2011-08-091-0/+1
|
* typoBenjamin Peterson2011-08-091-1/+1
|
* don't rewrite the header file if it hasn't changed; this reduces development ↵Benjamin Peterson2011-08-091-3/+10
| | | | build time
* fix indentationBenjamin Peterson2011-08-091-1/+1
|
* merge headsBenjamin Peterson2011-08-094-1/+31
|\
| * Add support for unary plus and unary minus to collections.Counter()Raymond Hettinger2011-08-094-1/+31
| |
* | merge 3.2 (#12719)Benjamin Peterson2011-08-091-0/+5
|\ \
| * | note mutating tp_dict is bad (closes #12719)Benjamin Peterson2011-08-091-0/+5
| | |
* | | add a AST validator (closes #12575)Benjamin Peterson2011-08-095-6/+897
| | |
* | | forgotten in f578ca44193dBenjamin Peterson2011-08-091-2/+2
| | |
* | | the bool asdl type died a while agoBenjamin Peterson2011-08-091-1/+1
| | |
* | | add a asdl bytes type, so Bytes.s be properly typecheckedBenjamin Peterson2011-08-095-7/+28
| |/ |/|
* | Merge 3.2Éric Araujo2011-08-090-0/+0
|\ \ | |/
| * Branch mergeÉric Araujo2011-08-095-97/+255
| |\
* | \ Branch mergeÉric Araujo2011-08-099-177/+443
|\ \ \
| * \ \ Merge 3.2Éric Araujo2011-08-080-0/+0
| |\ \ \ | | | |/ | | |/|
| | * | Branch mergeÉric Araujo2011-08-085-97/+255
| | |\ \
| * | \ \ Branch mergeÉric Araujo2011-08-089-177/+443
| |\ \ \ \
| | * | | | Clean up shutil.disk_usage.Éric Araujo2011-08-082-16/+33
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Move a test from call time to define time - Add the function name to __all__ - Improve docstring and docs A few lines are now duplicated (named tuple definition and docstring) but I think the end result reads better.
| | * | | | Merge doc changes from 3.2 (#8617, #10745).Éric Araujo2011-08-067-161/+410
| | |\ \ \ \ | | | | |/ / | | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In the install and library docs, I changed the text to refer to packaging instead of distutils. I also checked that the documented paths correctly reflect what’s really defined in sysconfig; the main difference with paths defined in distutils.install is that include directories don’t end with the distribution name anymore (i.e. distutils uses include/python3.3/spam, sysconfig include/python3.3), I have no idea why.
| | | * | | Add documentation for PEP 370 features in distutils (#10745).Éric Araujo2011-08-063-57/+138
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This started out as an easy task, just add a section describing this alternate scheme, but I found a lot of cleanup to do along the way: - fixed inverted reST targets - fixed entries for modules (hi abiflags!) or data files - avoided duplicating the same options listing five or six times - added missing entries for C headers locations - added documentation for --install-lib - fixed a few misuses of the option role (see #9312), but not all (not worth the time, but will do it in packaging docs) - fixed some markup The paths fixes were done with an eye on the source code in the install command, so they really describe what’s actually done. The situation on Mac OS X is rather messy: the fix for #8084 touched site and sysconfig, but distutils doesn’t use these files. I suspect we have a mismatched stdlib at the moment, and the fix is not even clear (see the bug report for further discussion).
| | | * | | Improve documentation for PEP 370 support in site module (#8617).Éric Araujo2011-08-054-43/+120
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | site.USER_BASE and site.USER_SITE are now fully documented. PEP 370 is outdated with respects to the Mac framework situation, but the code in sysconfig and the example in the 3.2 What’s New document helped me find the right values to document for Mac OS X. The command-line interface of the site module, partly documented in the 3.2 What’s New, is fully described in the module docs. The purpose of the usercustomize module is explained in the site docs, with a gentle introduction in the tutorial (right after the section that talks about PYTHONSTARTUP; a comment mentions it should be moved from the tutorial to another file, but that will be another bug). Various markup and wording improvements were made along the way in the site module docs. Duplicate and incomplete declarations of environment variables have also been removed (the original bug report was actually about these entries :). The site module docs are still a bit messy; I’ll see about improving them for #11553. All these sections are copiously interlinked and findable from the doc indexes.
* | | | | | Issue #12700: fix test_faulthandler for Mac OS X LionVictor Stinner2011-08-081-4/+5
| | | | | | | | | | | | | | | | | | | | | | | | Read from NULL raises SIGILL, not SIGSEGV, on Mac OS X Lion.
* | | | | | Merge with 3.2.Georg Brandl2011-08-081-0/+3
|\ \ \ \ \ \ | |/ / / / / |/| | | | / | | |_|_|/ | |/| | |
| * | | | Confirm that the prime example is actually correct. We get so many ↵Georg Brandl2011-08-081-0/+3
| | |_|/ | |/| | | | | | | | | | complaints about a "buggy example" on docs@python, let us hope this cuts them in half at least.
* | | | #12709: merge with 3.2Sandro Tosi2011-08-081-1/+1
|\ \ \ \ | |/ / /
| * | | #12709: add error_callback argument to map_async documentationSandro Tosi2011-08-081-1/+1
| | | |
* | | | #10741: merge with 3.2Sandro Tosi2011-08-072-1/+9
|\ \ \ \ | |/ / /
| * | | #10741: add documentation for PyGILState_GetThisThreadState()Sandro Tosi2011-08-072-1/+9
| | | |
* | | | #12677: merge with 3.2Sandro Tosi2011-08-073-6/+6
|\ \ \ \ | |/ / /
| * | | #12677: correct turtle orientation in docSandro Tosi2011-08-073-6/+6
| | | |
* | | | Fix grammarEli Bendersky2011-08-061-3/+3
|\ \ \ \ | |/ / /
| * | | Fix grammarEli Bendersky2011-08-061-3/+3
| | | |
* | | | merge from 3.2 - Fix closes Issue12697 - Update the usage syntax of timeit ↵Senthil Kumaran2011-08-061-6/+6
|\ \ \ \ | |/ / / | | | | | | | | module in the docs.
| * | | Fix closes Issue12697 - Update the usage syntax of timeit module in the docs.Senthil Kumaran2011-08-061-6/+6
| | | |
* | | | merge from 3.2 - Fix closes issue11047 - Correct the 2.7 whatsnew ↵Senthil Kumaran2011-08-061-2/+2
|\ \ \ \ | |/ / / | | | | | | | | description for issue 7902.
| * | | merge from 2.7 - Fix closes issue11047 - Correct the 2.7 whatsnew ↵Senthil Kumaran2011-08-061-2/+2
| | | | | | | | | | | | | | | | description for issue 7902.
* | | | merge from 3.2 - Fix closes issue12698 - make the no_proxy environment ↵Senthil Kumaran2011-08-062-2/+5
|\ \ \ \ | |/ / / | | | | | | | | variable handling a bit lenient (accomodate spaces in between the items)
| * | | Fix closes issue12698 - make the no_proxy environment variable handling a ↵Senthil Kumaran2011-08-062-2/+5
| | |/ | |/| | | | | | | bit lenient (accomodate spaces in between the items)
* | | #11572: improvements to copy module tests along with removal of old test suiteSandro Tosi2011-08-052-138/+95
| |/ |/|
* | Fix wrong use of root logger in packaging (also a NameError)Éric Araujo2011-08-041-1/+1
| |
* | Issue #12540: Prevent zombie IDLE processes on Windows due to changesNed Deily2011-08-052-26/+18
|\ \ | |/ | | | | in os.kill(). Original patch by Eli Bendersky.
| * Issue #12540: Prevent zombie IDLE processes on Windows due to changesNed Deily2011-08-032-26/+18
| | | | | | | | in os.kill(). Original patch by Eli Bendersky.
* | Silence the altered state warning about threadgs when running test_httplib.Brett Cannon2011-08-051-4/+4
| |
* | Silence altered execution state warnings from test_telnetlib involving threads.Brett Cannon2011-08-051-0/+1
| |
* | Explicitly close a file to stop raising a ResourceWarning.Brett Cannon2011-08-051-12/+13
| |