summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fix title.v3.2b1Georg Brandl2010-12-051-1/+1
|
* Remove tag.Georg Brandl2010-12-051-0/+1
|
* Take PyUnicode_TransformDecimalToASCII out of the limited API.Georg Brandl2010-12-051-0/+2
|
* Tagging 3.2b1.Georg Brandl2010-12-051-0/+1
|
* Nits and todosRaymond Hettinger2010-12-051-6/+9
|
* Apply rest of #10628, and add a few todo comments.Georg Brandl2010-12-051-2/+12
|
* Temporarily disable newly failing test for the release.Georg Brandl2010-12-051-0/+3
|
* More fine-grained monitoring of alterations to logging stateNick Coghlan2010-12-051-4/+10
|
* SpellingRaymond Hettinger2010-12-051-3/+3
|
* Update the unittest section.Raymond Hettinger2010-12-051-17/+27
|
* Issue 10626 investigation: regrtest now checks for alterations to the ↵Nick Coghlan2010-12-051-1/+11
| | | | logging state in the current process (and yes, test_pydoc alters it)
* New string format character.Raymond Hettinger2010-12-051-1/+14
|
* Optimization notes.Raymond Hettinger2010-12-051-5/+22
|
* Should use posix_error here.Hirokazu Yamamoto2010-12-052-6/+4
|
* Describe the transform/untranform methodsRaymond Hettinger2010-12-051-0/+19
|
* Note the updates to range objects.Raymond Hettinger2010-12-051-23/+30
|
* Sorry, I had introduced tab in source code.Hirokazu Yamamoto2010-12-051-1/+1
|
* Avoid possible zombi process.Hirokazu Yamamoto2010-12-051-2/+4
|
* Now can reproduce the error on AMD64 Windows Server 2008Hirokazu Yamamoto2010-12-051-16/+21
| | | | even where os.symlink is not supported.
* Optimization of Timsort.Raymond Hettinger2010-12-051-3/+19
|
* Start the argparse entry.Raymond Hettinger2010-12-051-7/+30
|
* Mention itertools.accumulate().Raymond Hettinger2010-12-042-1/+19
|
* Fill-in stub for concurrent.futuresRaymond Hettinger2010-12-041-5/+43
|
* Doc nit.Raymond Hettinger2010-12-041-1/+1
|
* Bump to 3.2b1.Georg Brandl2010-12-046-24/+23
|
* Fix markup errors.Georg Brandl2010-12-043-4/+4
|
* Update suspicious exceptions.Georg Brandl2010-12-041-0/+7
|
* Update pydoc topics.Georg Brandl2010-12-041-10/+10
|
* Silence compile errorAntoine Pitrou2010-12-041-3/+4
|
* clarify the docs and new warning message.Gregory P. Smith2010-12-042-3/+3
|
* configparser: mapping protocol access get() handles configparser-specific ↵Łukasz Langa2010-12-042-6/+59
| | | | arguments as well
* Use proper plural forms in argparse (#4391)Éric Araujo2010-12-043-4/+10
|
* Issue #10601: sys.displayhook uses 'backslashreplace' error handler onVictor Stinner2010-12-044-4/+125
| | | | UnicodeEncodeError.
* More issue #10624: Add requires_IEEE_754 to __all__.Eric Smith2010-12-041-1/+1
|
* Fix test suite to not activate new sigint behavior in pdb.Georg Brandl2010-12-043-15/+19
|
* Fix typo.Georg Brandl2010-12-041-1/+1
|
* Fix accidental checkin.Georg Brandl2010-12-041-1/+1
|
* Add display/undisplay pdb commands.Georg Brandl2010-12-043-2/+84
|
* #7245: Add a SIGINT handler on continue in pdb that allows to break a ↵Georg Brandl2010-12-044-7/+47
| | | | program again by pressing Ctrl-C.
* Issue 10625: Add tests for negative zeros in complex str and repr.Eric Smith2010-12-041-0/+16
|
* Issue #10624: Use support.requires_IEEE_754 in all appropriate tests.Eric Smith2010-12-047-57/+31
|
* Fix PEP number.Martin v. Löwis2010-12-041-1/+1
|
* support for checking test coverage added.Łukasz Langa2010-12-041-2/+14
| | | | 70% coverage at the moment (not tragic but needs work).
* Issue #10624: Move requires_IEEE_754 into test.support. I'll fix up other ↵Eric Smith2010-12-042-6/+6
| | | | uses of it shortly.
* Removed static function complex_format, moved it into complex_repr. Modified ↵Eric Smith2010-12-042-26/+28
| | | | tests to check both str and repr, which are the same for complex.
* Use copysign to produce appropriately signed zeros instead of trying to worm ↵Mark Dickinson2010-12-041-12/+5
| | | | around possible compiler optimizations.
* configparser: fixed inconsistency where in SafeConfigParser option valuesŁukasz Langa2010-12-043-8/+60
| | | | | were ensured to be strings but section names and option keys were not. Behaviour unchanged for RawConfigParser and ConfigParser.
* Issue #10596: Fix float.__mod__ to have the same behaviour asMark Dickinson2010-12-043-4/+38
| | | | float.__divmod__ with respect to signed zeros.
* I hope this will fix Win2008(x64) buildbot error.Hirokazu Yamamoto2010-12-041-19/+25
|
* Expose CompileString, not CompileStringFlags under theMartin v. Löwis2010-12-042-2/+2
| | | | limited API.