Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #5920: Changed format.__float__ and complex.__float__ to use a ↵ | Eric Smith | 2009-05-05 | 9 | -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 for | Mark Dickinson | 2009-05-05 | 2 | -3/+3 |
| | | | | the patch. | ||||
* | Fixing issue5861 - test_urllib fails on windows. Agree to comment to have ↵ | Senthil Kumaran | 2009-05-05 | 1 | -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öwis | 2009-05-05 | 2 | -2/+4 |
| | |||||
* | Remove unused variable. | Georg Brandl | 2009-05-05 | 1 | -1/+0 |
| | |||||
* | #5929: fix signedness warning. | Georg Brandl | 2009-05-05 | 1 | -1/+1 |
| | |||||
* | Fix overlong lines. | Georg Brandl | 2009-05-05 | 1 | -17/+27 |
| | |||||
* | #5142: add module skipping feature to pdb. | Georg Brandl | 2009-05-05 | 5 | -7/+164 |
| | |||||
* | Add a news entry for r72319. | Georg Brandl | 2009-05-05 | 1 | -0/+3 |
| | |||||
* | #1309567: fix linecache behavior of stripping subdirectories from paths when ↵ | Georg Brandl | 2009-05-05 | 2 | -2/+134 |
| | | | | looking for relative filename matches. Also add a linecache test suite. | ||||
* | #5932: fix error return in _convertPyInt_AsSsize_t() conversion function. | Georg Brandl | 2009-05-05 | 2 | -3/+6 |
| | |||||
* | Update bdist_msi so that the generated MSIs for pure Python modules can ↵ | Steven Bethard | 2009-05-05 | 1 | -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 IronPython | Benjamin Peterson | 2009-05-05 | 1 | -2/+5 |
| | |||||
* | Fix issue 5890: (property subclass shadows __doc__ string) by inserting | R. David Murray | 2009-05-04 | 3 | -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 Pitrou | 2009-05-04 | 2 | -1/+6 |
| | | | | extracting a file to the root directory. | ||||
* | #5916, 5917: small socket doc improvements. | Georg Brandl | 2009-05-04 | 1 | -2/+7 |
| | |||||
* | #5927, 5928: typos. | Georg Brandl | 2009-05-04 | 1 | -2/+2 |
| | |||||
* | #5925: fix highlighting of keyword table. | Georg Brandl | 2009-05-04 | 1 | -1/+3 |
| | |||||
* | Add Nick Barnes to ACKS. | Antoine Pitrou | 2009-05-04 | 1 | -0/+1 |
| | |||||
* | Issue #4426: The UTF-7 decoder was too strict and didn't accept some legal ↵ | Antoine Pitrou | 2009-05-04 | 4 | -194/+260 |
| | | | | | | sequences. Patch by Nick Barnes and Victor Stinner. | ||||
* | Fix typos. | Walter Dörwald | 2009-05-04 | 3 | -5/+5 |
| | |||||
* | Issue #5913: os.listdir() should fail for empty path on windows. | Hirokazu Yamamoto | 2009-05-04 | 2 | -6/+9 |
| | |||||
* | cleanup applied patch to match style that is already in py3k branch. | Gregory P. Smith | 2009-05-04 | 1 | -15/+8 |
| | |||||
* | Issue #4751: For hashlib algorithms provided by OpenSSL, the Python | Gregory P. Smith | 2009-05-04 | 4 | -52/+161 |
| | | | | GIL is now released during computation on data lengths >= 2048 bytes. | ||||
* | There's no %A in Python 2.x! | Walter Dörwald | 2009-05-03 | 1 | -1/+1 |
| | |||||
* | Issue #5108: Handle %s like %S and %R in PyUnicode_FromFormatV(): Call | Walter Dörwald | 2009-05-03 | 2 | -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 Dickinson | 2009-05-03 | 1 | -3/+16 |
| | |||||
* | Eliminate some locale-dependent calls to isspace and tolower. | Mark Dickinson | 2009-05-03 | 3 | -11/+11 |
| | |||||
* | Remove unnecessary uses of context in PyGetSetDef. See issue #5880. | Mark Dickinson | 2009-05-03 | 1 | -10/+15 |
| | |||||
* | docstring update. | Gregory P. Smith | 2009-05-03 | 1 | -0/+3 |
| | |||||
* | Optimization: move RFC defined network constant construction out of | Gregory P. Smith | 2009-05-03 | 1 | -14/+33 |
| | | | | the is_*() methods and into module private instances. | ||||
* | Issue 5379 - applies patch supplied by philipp hagemeister to fix | Gregory P. Smith | 2009-05-03 | 2 | -77/+64 |
| | | | | many problems with the ancient mcast.py demo code. | ||||
* | Further development of issue5559, handle Windows files | Kurt B. Kaiser | 2009-05-03 | 1 | -2/+4 |
| | | | | which not only have embedded spaces, but leading spaces. | ||||
* | idle.py modified and simplified to better support | Kurt B. Kaiser | 2009-05-03 | 2 | -21/+14 |
| | | | | | developing experimental versions of IDLE which are not installed in the standard location. | ||||
* | (no commit message) | Michael Foord | 2009-05-02 | 5 | -38/+256 |
| | |||||
* | Isue #5084: unpickling now interns the attribute names of pickled objects, | Antoine Pitrou | 2009-05-02 | 4 | -2/+36 |
| | | | | | saving memory and avoiding growth in size of subsequent pickles. Proposal and original patch by Jake McGuire. | ||||
* | add myself | Benjamin Peterson | 2009-05-02 | 1 | -0/+1 |
| | |||||
* | Add addCleanup and doCleanups to unittest.TestCase. | Michael Foord | 2009-05-02 | 4 | -24/+195 |
| | | | | | | Closes issue 5679. Michael Foord | ||||
* | #1607951: Make mailbox.Maildir re-read the directories less frequently. | Andrew M. Kuchling | 2009-05-02 | 2 | -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. Smith | 2009-05-02 | 1 | -46/+47 |
| | |||||
* | Remove unnecessary use of context for long getters. | Mark Dickinson | 2009-05-02 | 1 | -10/+15 |
| | | | | (Related to issue #5880). | ||||
* | revert unrelated change | Benjamin Peterson | 2009-05-02 | 1 | -3/+1 |
| | |||||
* | remove py3k compat code | Benjamin Peterson | 2009-05-02 | 3 | -64/+10 |
| | |||||
* | Add items | Andrew M. Kuchling | 2009-05-02 | 1 | -4/+37 |
| | |||||
* | don't let sys.argv be used in the tests | Benjamin Peterson | 2009-05-02 | 1 | -2/+5 |
| | |||||
* | Adds an exit parameter to unittest.main(). If False main no longer | Michael Foord | 2009-05-02 | 4 | -12/+98 |
| | | | | | | | | calls sys.exit. Closes issue 3379. Michael Foord | ||||
* | Keep py3k and trunk code in sync. | Eric Smith | 2009-05-02 | 1 | -0/+4 |
| | |||||
* | Fix directive name. | Georg Brandl | 2009-05-01 | 1 | -21/+21 |
| | |||||
* | Review ipaddr docs and add them in the TOC under "Internet protocols". | Georg Brandl | 2009-05-01 | 2 | -77/+80 |
| | |||||
* | Issue #5726: Make Modules/ld_so_aix return the actual exit code of the ↵ | Antoine Pitrou | 2009-05-01 | 2 | -0/+6 |
| | | | | | | linker, rather than always exit successfully. Patch by Floris Bruynooghe. |