summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Backport source role for linking to files in the cpython repo.Éric Araujo2011-08-181-1/+11
| | | | | | | | | | | | | Georg added this role in our 3.2 doc tools and gave the greenlight for a backport on python-dev. This code is a simplified version of the 3.2 code; the version of Sphinx used with Python 2.7 doesn’t have the function used to parse markup like :role:`text to be displayed <text to be processed>` (I was persuaded it was a standard reST construct, but it is actually a Sphinx innovation that has to be supported explicitly in role code —I’ll be damned). It is thus not possible to write for example :source:`the NEWS file <Misc/NEWS>`, but :source:`Misc/NEWS` will work.
* Avoid title case in flowing text (backport from 3.2)Éric Araujo2011-08-131-2/+3
|
* Issue #12718: Add documentation on using custom importers.Vinay Sajip2011-08-111-0/+25
|
* Remove the un-exercised in-module test code.Senthil Kumaran2011-08-101-68/+0
|
* Fix closes Issue12722 - link heapq source in the text format in the ↵Senthil Kumaran2011-08-101-1/+1
| | | | documentation.
* Issue 12717: Fix-up an earlier backport in ConfigParser.Raymond Hettinger2011-08-092-1/+23
|
* Repair markup.Georg Brandl2011-08-091-1/+1
|
* 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: add error_callback argument to map_async documentationSandro Tosi2011-08-081-1/+1
|
* #10741: add documentation for PyGILState_GetThisThreadState()Sandro Tosi2011-08-072-1/+11
|
* #12677: correct turtle orientation in docSandro Tosi2011-08-073-6/+6
|
* whitespace fix.Senthil Kumaran2011-08-071-1/+0
|
* Remove the old dead test program within the module in 2.7.Senthil Kumaran2011-08-071-62/+0
|
* Fix grammarEli Bendersky2011-08-061-3/+3
|
* Fix closes Issue12697 - Update the usage syntax of timeit module in the docs.Senthil Kumaran2011-08-061-6/+6
|
* s/a/an - grammar?Senthil Kumaran2011-08-061-1/+1
|
* Fix closes issue11047 - Correct the 2.7 whatsnew description for issue 7902.Senthil Kumaran2011-08-061-2/+2
|
* Fix closes issue12698 - make the no_proxy environment variable handling a ↵Senthil Kumaran2011-08-062-1/+5
| | | | bit lenient (accomodate spaces in between the items)
* dosmodule is, thankfully, no moreBenjamin Peterson2011-08-041-2/+0
|
* add svn+ssh testcase for urljoin.Senthil Kumaran2011-08-031-0/+1
|
* include svn+ssh as well.Senthil Kumaran2011-08-031-1/+1
|
* Fix closes issue12683 - urljoin to work with relative join of svn scheme.Senthil Kumaran2011-08-033-1/+6
|
* Fix closes issue12663 - Correcting the ArgumentParser.error description. ↵Senthil Kumaran2011-08-021-1/+1
| | | | Patch by Sandro Tosi.
* Branch mergeÉric Araujo2011-08-023-3/+7
|\
| * Fix incorrect mtime comparison in distutils (#11933).Éric Araujo2011-08-023-3/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | This is a regression introduced in 9211a5d7d0b4, when uses of ST_MTIME constants were changed to uses of st_mtime attributes. As diagnosed in the bug report, this change is not merely stylistic: st_mtime is a float but ST_MTIME’s resolution is rounded to the seconds, so there was a mismatch between the values seen by file_util and dep_util which caused an sdist to be unnecessarily created a second time on an ext4 filesystem. This patch has been tested by John S. Gruber, who reported the bug. As this is a simple code revert, I think it’s okay to commit without a unit test.
* | #12670: Fix struct code after forward declaration on ctypes docSandro Tosi2011-08-021-2/+2
| |
* | Fix closes Issue12183 - Explain the Symlink copy behavior in ↵Senthil Kumaran2011-08-021-2/+3
| | | | | | | | shutil.copytree. Patch by Petri Lehtinen.
* | Backport 68b5f87566fbStefan Krah2011-08-011-0/+3
| |
* | Use attribute access instead of index access for namedtuple.Georg Brandl2011-08-011-1/+1
|/
* Branch mergeÉric Araujo2011-08-017-54/+112
|\
| * Stop trying to write into the stdlib during lib2to3 tests (#12331).Éric Araujo2011-07-312-7/+14
| | | | | | | | | | This prevents tests from failing when run from a Python installed in a read-only directory.
| * Fix regression with distutils MANIFEST handing (#11104, #8688).Éric Araujo2011-07-315-40/+85
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The changed behavior of sdist in 2.7 broke packaging for projects that wanted to use a manually-maintained MANIFEST file (instead of having a MANIFEST.in template and letting distutils generate the MANIFEST). The fixes that were committed for #8688 (d29399100973 by Tarek and f7639dcdffc3 by me) did not fix all issues exposed in the bug report, and also added one problem: the MANIFEST file format gained comments, but the read_manifest method was not updated to handle (i.e. ignore) them. This changeset should fix everything; the tests have been expanded and I successfully tested with Mercurial, which suffered from this regression. I have grouped the versionchanged directives for these bugs in one place and added micro version numbers to help users know the quirks of the exact version they’re using. I also removed a stanza in the docs that was forgotten in Tarek’s first changeset. Initial report, thorough diagnosis and patch by John Dennis, further work on the patch by Stephen Thorne, and a few edits and additions by me.
| * Let “make patchcheck” work for out-of-dir builds (#9860)Éric Araujo2011-07-301-7/+13
| |
* | Closes #12667: Corrected documentation for SMTPHandler secure argument.Vinay Sajip2011-08-011-2/+8
| |
* | Fix typo reported by Sandro Tosi.Ezio Melotti2011-07-311-1/+1
| |
* | running tests enables us to discover that they actually workBenjamin Peterson2011-07-311-1/+1
| |
* | merge heads.Senthil Kumaran2011-07-311-1/+2
|\ \
| * \ merge headsBenjamin Peterson2011-07-311-1/+1
| |\ \
| * | | be preciseBenjamin Peterson2011-07-311-1/+2
| | | |
* | | | using test_support.transient_internet helper method in the urllib2net test.Senthil Kumaran2011-07-311-3/+5
| |/ / |/| |
* | | #12531: Fix spaces.Ezio Melotti2011-07-301-1/+1
|/ /
* | note Ellipsis syntaxBenjamin Peterson2011-07-301-1/+1
| |
* | add spaceBenjamin Peterson2011-07-301-0/+1
| |
* | document NotImplementedBenjamin Peterson2011-07-301-0/+9
|/
* Issue #11699: fix documentation of OptionParser.get_option_group. Patch by ↵Eli Bendersky2011-07-301-2/+3
| | | | Petri Lehtinen
* Document that atexit execution order is undefined (#9788)Éric Araujo2011-07-291-1/+3
|
* Add a link target for argparse.Namespace (#8982)Éric Araujo2011-07-291-7/+10
|
* Make “pydoc somebuiltin.somemethod” work (#8887)Éric Araujo2011-07-293-8/+29
|
* Backout duplicate changeset ed34ca4e639cÉric Araujo2011-07-291-2/+0
|
* Add missing reST target to one heading in the tutorialÉric Araujo2011-06-111-0/+2
|