summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* update link to pycrypto (closes #12351)Benjamin Peterson2011-06-161-1/+1
|
* Closes #12206: documentation update for LogRecord constructor and ↵Vinay Sajip2011-06-131-0/+10
| | | | Formatter.formatTime.
* allow "fake" filenames in findsource (closes #9284)Benjamin Peterson2011-06-113-2/+26
| | | | | | This allows findsource() to work in doctests. A patch from Dirkjan Ochtman.
* onto 2.7.3Benjamin Peterson2011-06-111-1/+1
|
* merge 2.7.2 release branchBenjamin Peterson2011-06-117-29/+30
|\
| * Added tag v2.7.2 for changeset 8527427914a2Benjamin Peterson2011-06-111-0/+1
| |
| * update pydoc-topicsv2.7.2Benjamin Peterson2011-06-111-22/+22
| |
| * bump to 2.7.2 finalBenjamin Peterson2011-06-115-7/+7
| |
* | merge headsBenjamin Peterson2011-06-1011-24/+103
|\ \
| * | Issue #12223: Typo fix in datamodel docsEli Bendersky2011-06-101-1/+1
| | |
| * | #10694: zipfile now ignores garbage at the end of a zipfile.R David Murray2011-06-093-10/+28
| | | | | | | | | | | | Original fix by 'rep', final patch (with tests) by Xuanji Li.
| * | Correction to f1509fc75435 - Issue #11583Brian Curtin2011-06-092-6/+7
| | | | | | | | | | | | | | | | | | Rather than wrapping the C _isdir function in a Python function, just import the C _isdir function directly. Additionally, add in the docstring which was left out.
| * | Fix a few misuses of :option: I missed in r86521.Éric Araujo2011-06-093-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Extract of the commit message: Fix usage of :option: in the docs (#9312). :option: is used to create a link to an option of python, not to mark up any instance of any arbitrary command-line option. These were changed to ````.
| * | Branch mergeÉric Araujo2011-06-092-8/+17
| |\ \
| | * | Add examples that work on Windows to distutils docs (#1626300)Éric Araujo2011-06-072-8/+17
| | | |
| * | | MergeBrian Curtin2011-06-093-0/+51
| |/ /
* | | merge 2.7.2 release branch with fix for #12009Benjamin Peterson2011-06-104-44/+107
|\ \ \ | |/ / |/| / | |/
| * fix regression in netrc comment handling (closes #12009)Benjamin Peterson2011-06-104-44/+107
| |
* | Branch mergeÉric Araujo2011-06-062-5/+6
|\ \
| * | Remove unnecessary executable bit on one distutils fileÉric Araujo2011-06-041-0/+0
| | |
| * | Remove outdated bit of advice (c882b5ff92d9 follow-up)Éric Araujo2011-06-041-5/+6
| | |
* | | merge 2.7.2 release branchBenjamin Peterson2011-06-052-2/+2
|\ \ \ | | |/ | |/|
| * | Stop adding txt files twice.Martin v. Löwis2011-06-051-2/+0
| | |
| * | Add 2.7.2 UUIDsMartin v. Löwis2011-06-051-0/+2
| | |
* | | Issue #12080: Fix a performance issue in Decimal._power_exact that caused ↵Mark Dickinson2011-06-043-38/+97
| |/ |/| | | | | some corner-case Decimal.__pow__ calls to take an unreasonably long time.
* | Null merge from 2.6.Barry Warsaw2011-06-040-0/+0
|\ \
| * | Replay svn r88852.Barry Warsaw2011-06-042-1/+13
| | |
| * | Replay svn r88850.v2.6.7Barry Warsaw2011-06-047-26/+14
| | |
* | | Issue #12016: Add test_errorhandle() to TestBase_Mapping ofVictor Stinner2011-06-031-4/+38
| | | | | | | | | | | | | | | test_multibytecodec_support. Improve also error message of the test_errorhandle() of TestBase.
* | | Issue #12016: Reindent decoders of HK and JP codecsVictor Stinner2011-06-032-51/+52
| | |
* | | merge 2.7.2 release branchBenjamin Peterson2011-06-031-2/+3
|\ \ \ | | |/ | |/|
| * | another benefit of this changeBenjamin Peterson2011-06-031-2/+3
| | |
| * | merge release tagBenjamin Peterson2011-06-011-0/+1
| |\ \
* | | | Document working dir for “make html” (#12249). Patch by Tshepang ↵Éric Araujo2011-06-031-0/+1
| | | | | | | | | | | | | | | | Lekhonkhobe.
* | | | Fix named tuples to work with vars().Raymond Hettinger2011-06-034-2/+7
| | | |
* | | | sys.checkinterval() now refreshes the current countdown ticker.Raymond Hettinger2011-06-022-0/+8
| | | |
* | | | Cleanup exampleRaymond Hettinger2011-06-011-5/+4
| | | |
* | | | Multiple clean-ups to the docs for builtin functions.Raymond Hettinger2011-06-011-28/+34
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Use concrete example for dir() and eliminate the distracting doctest directives. * Add a pure python equivalent for enumerate() * Modify the enumerate() example to demonstrate the start argument * Remove incorrect reference the *iterable* in the enumerate() docs. * Downgrade the comments on input() from a warning to a note. * Fix the iter() example to use the empty string as the terminating condition for file.readline(). Also, the old example was broken because readline() results include a newline, so 'STOP\n' would have been the correct terminating condition. Even with that fix, the STOP example was fragile and would have lead to infinite loops with malformed inputs. * Do not refer to classmethod as being "more advanced" than staticmethod.
* | | | Link to suggestions for how to use super().Raymond Hettinger2011-06-011-0/+4
| | | |
* | | | Branch mergeÉric Araujo2011-06-012-2/+2
|\ \ \ \
| * | | | Fix markup: arguments in a class directive are __init__ arguments, not base ↵Éric Araujo2011-05-311-1/+1
| | | | | | | | | | | | | | | | | | | | classes
| * | | | Fix error message to use the Python name instead of the C nameÉric Araujo2011-05-311-1/+1
| | |/ / | |/| |
* | | | merge headsBenjamin Peterson2011-06-012-1/+4
|\ \ \ \
| * | | | Issue #12085: Fix test_subprocess for my previous commitVictor Stinner2011-05-312-1/+4
| | | | | | | | | | | | | | | | | | | | Replace support by test_support, and add captured_stderr() function.
* | | | | merge 2.7.2 release branchBenjamin Peterson2011-06-012-21/+16
|\ \ \ \ \ | |/ / / / |/| | / / | | |/ / | |/| |
| * | | simply use the Python version for pyexpat.__version__ #12221Benjamin Peterson2011-05-312-21/+10
| | | |
| * | | add 2.7.2 headerBenjamin Peterson2011-05-311-0/+7
| | | |
* | | | Close #12085: Fix an attribute error in subprocess.Popen destructor if theVictor Stinner2011-05-314-1/+19
| | | | | | | | | | | | | | | | | | | | constructor has failed, e.g. because of an undeclared keyword argument. Patch written by Oleg Oshmyan.
* | | | Issue #12057: Add tests for ISO 2022 codecsVictor Stinner2011-05-307-1/+83
| | | | | | | | | | | | | | | | iso2022_jp, iso2022_jp_2 and iso2022_kr
* | | | Issue #1195: fix the issue number of the NEWS entryVictor Stinner2011-05-301-1/+1
| | | |