summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Issue #5920: Changed format.__float__ and complex.__float__ to use a ↵Eric Smith2009-05-059-27/+110
| | | | precision of 12 when using the empty presentation type. This more closely matches str()'s behavior and reduces surprises when adding alignment flags to an empty format string. Patch by Mark Dickinson.
* Issue #5933: Fix some gcc -Wextra warnings. Thanks Victor Stinner forMark Dickinson2009-05-052-3/+3
| | | | the patch.
* Fixing issue5861 - test_urllib fails on windows. Agree to comment to have ↵Senthil Kumaran2009-05-051-1/+1
| | | | ':' in pathname2url as windows recognizes it. test_urllib passes now.
* Issue #5847: Remove -n switch on "Edit with IDLE" menu item.Martin v. Löwis2009-05-052-2/+4
|
* Remove unused variable.Georg Brandl2009-05-051-1/+0
|
* #5929: fix signedness warning.Georg Brandl2009-05-051-1/+1
|
* Fix overlong lines.Georg Brandl2009-05-051-17/+27
|
* #5142: add module skipping feature to pdb.Georg Brandl2009-05-055-7/+164
|
* Add a news entry for r72319.Georg Brandl2009-05-051-0/+3
|
* #1309567: fix linecache behavior of stripping subdirectories from paths when ↵Georg Brandl2009-05-052-2/+134
| | | | looking for relative filename matches. Also add a linecache test suite.
* #5932: fix error return in _convertPyInt_AsSsize_t() conversion function.Georg Brandl2009-05-052-3/+6
|
* Update bdist_msi so that the generated MSIs for pure Python modules can ↵Steven Bethard2009-05-051-75/+162
| | | | install to any version of Python, like the generated EXEs from bdist_wininst. (Previously, you had to create a new MSI for each version of Python.)
* using sys._getframe(x), where x > 0 doesnt' work on IronPythonBenjamin Peterson2009-05-051-2/+5
|
* Fix issue 5890: (property subclass shadows __doc__ string) by insertingR. David Murray2009-05-043-17/+142
| | | | | | | the __doc__ into the subclass instance __dict__. The fix refactors property_copy to call property_init in such a way that the __doc__ logic is re-executed correctly when getter_doc is 1, thus simplifying property_copy.
* Issue #5692: In :class:`zipfile.Zipfile`, fix wrong path calculation when ↵Antoine Pitrou2009-05-042-1/+6
| | | | extracting a file to the root directory.
* #5916, 5917: small socket doc improvements.Georg Brandl2009-05-041-2/+7
|
* #5927, 5928: typos.Georg Brandl2009-05-041-2/+2
|
* #5925: fix highlighting of keyword table.Georg Brandl2009-05-041-1/+3
|
* Add Nick Barnes to ACKS.Antoine Pitrou2009-05-041-0/+1
|
* Issue #4426: The UTF-7 decoder was too strict and didn't accept some legal ↵Antoine Pitrou2009-05-044-194/+260
| | | | | | sequences. Patch by Nick Barnes and Victor Stinner.
* Fix typos.Walter Dörwald2009-05-043-5/+5
|
* Issue #5913: os.listdir() should fail for empty path on windows.Hirokazu Yamamoto2009-05-042-6/+9
|
* cleanup applied patch to match style that is already in py3k branch.Gregory P. Smith2009-05-041-15/+8
|
* Issue #4751: For hashlib algorithms provided by OpenSSL, the PythonGregory P. Smith2009-05-044-52/+161
| | | | GIL is now released during computation on data lengths >= 2048 bytes.
* There's no %A in Python 2.x!Walter Dörwald2009-05-031-1/+1
|
* Issue #5108: Handle %s like %S and %R in PyUnicode_FromFormatV(): CallWalter Dörwald2009-05-032-48/+37
| | | | | | PyUnicode_DecodeUTF8() once, remember the result and output it in a second step. This avoids problems with counting UTF-8 bytes that ignores the effect of using the replace error handler in PyUnicode_DecodeUTF8().
* Don't use PyOS_strnicmp for NaN and Inf detection: it's locale-aware.Mark Dickinson2009-05-031-3/+16
|
* Eliminate some locale-dependent calls to isspace and tolower.Mark Dickinson2009-05-033-11/+11
|
* Remove unnecessary uses of context in PyGetSetDef. See issue #5880.Mark Dickinson2009-05-031-10/+15
|
* docstring update.Gregory P. Smith2009-05-031-0/+3
|
* Optimization: move RFC defined network constant construction out ofGregory P. Smith2009-05-031-14/+33
| | | | the is_*() methods and into module private instances.
* Issue 5379 - applies patch supplied by philipp hagemeister to fixGregory P. Smith2009-05-032-77/+64
| | | | many problems with the ancient mcast.py demo code.
* Further development of issue5559, handle Windows filesKurt B. Kaiser2009-05-031-2/+4
| | | | which not only have embedded spaces, but leading spaces.
* idle.py modified and simplified to better supportKurt B. Kaiser2009-05-032-21/+14
| | | | | developing experimental versions of IDLE which are not installed in the standard location.
* (no commit message)Michael Foord2009-05-025-38/+256
|
* Isue #5084: unpickling now interns the attribute names of pickled objects,Antoine Pitrou2009-05-024-2/+36
| | | | | saving memory and avoiding growth in size of subsequent pickles. Proposal and original patch by Jake McGuire.
* add myselfBenjamin Peterson2009-05-021-0/+1
|
* Add addCleanup and doCleanups to unittest.TestCase.Michael Foord2009-05-024-24/+195
| | | | | | Closes issue 5679. Michael Foord
* #1607951: Make mailbox.Maildir re-read the directories less frequently.Andrew M. Kuchling2009-05-022-4/+55
| | | | | This is done by recording the current time -1sec, and not re-reading unless the directory mod. times are >= the recorded time.
* Convert test method names to PEP8 style.Gregory P. Smith2009-05-021-46/+47
|
* Remove unnecessary use of context for long getters.Mark Dickinson2009-05-021-10/+15
| | | | (Related to issue #5880).
* revert unrelated changeBenjamin Peterson2009-05-021-3/+1
|
* remove py3k compat codeBenjamin Peterson2009-05-023-64/+10
|
* Add itemsAndrew M. Kuchling2009-05-021-4/+37
|
* don't let sys.argv be used in the testsBenjamin Peterson2009-05-021-2/+5
|
* Adds an exit parameter to unittest.main(). If False main no longerMichael Foord2009-05-024-12/+98
| | | | | | | | calls sys.exit. Closes issue 3379. Michael Foord
* Keep py3k and trunk code in sync.Eric Smith2009-05-021-0/+4
|
* Fix directive name.Georg Brandl2009-05-011-21/+21
|
* Review ipaddr docs and add them in the TOC under "Internet protocols".Georg Brandl2009-05-012-77/+80
|
* Issue #5726: Make Modules/ld_so_aix return the actual exit code of the ↵Antoine Pitrou2009-05-012-0/+6
| | | | | | linker, rather than always exit successfully. Patch by Floris Bruynooghe.