| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | 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. | ||||
| * | Issue #3002: `shutil.copyfile()` and `shutil.copytree()` now raise an | Antoine Pitrou | 2009-05-01 | 3 | -4/+53 |
| | | | | | error when a named pipe is encountered, rather than blocking infinitely. | ||||
| * | Adds the ipaddr module to the standard library. Issue #3959. | Gregory P. Smith | 2009-05-01 | 4 | -0/+2262 |
| | | | | | | | Based off of subversion r69 from http://code.google.com/p/ipaddr-py/ This code is 2to3 safe, I'll merge it into py3k later this afternoon. | ||||
| * | Make test.test_support.EnvironmentVarGuard behave like a dictionary. | Walter Dörwald | 2009-05-01 | 11 | -66/+71 |
| | | | | | | All changes are mirrored to the underlying os.environ dict, but rolled back on exit from the with block. | ||||
| * | #5889: remove comma at the end of a list that some C compilers don't like. | Georg Brandl | 2009-05-01 | 1 | -1/+1 |
| | | |||||
| * | Fix for Issue1648102, based on the MSDN spec: If this parameter specifies the | Senthil Kumaran | 2009-05-01 | 1 | -10/+3 |
| | | | | | | "<local>" macro as the only entry, this function bypasses any host name that does not contain a period. | ||||
| * | Make the turtle.rst doctests pass. I have a feeling there should be | R. David Murray | 2009-04-30 | 1 | -350/+683 |
| | | | | | | more cleanup, but I don't know now to kill turtles. Especially unexpected ones... ;) | ||||
| * | Issue #1588: Add complex.__format__. | Eric Smith | 2009-04-30 | 7 | -58/+449 |
| | | |||||
| * | prevent ref cycles by removing bound method on close() | Benjamin Peterson | 2009-04-30 | 1 | -0/+2 |
| | | |||||
| * | make sure to close file | Benjamin Peterson | 2009-04-30 | 1 | -1/+1 |
| | | |||||
| * | make sure mode is removable while cleaning up test droppings | Benjamin Peterson | 2009-04-29 | 1 | -0/+5 |
| | | |||||
| * | #5878: fix repr of re object. | Georg Brandl | 2009-04-29 | 1 | -1/+1 |
| | | |||||
| * | fix test_shutil on ZFS #5676 | Benjamin Peterson | 2009-04-29 | 1 | -2/+16 |
| | | |||||
| * | Backport some of the float formatting tests from py3k. | Mark Dickinson | 2009-04-29 | 2 | -0/+375 |
| | | |||||
| * | Remove format_float and use _PyOS_double_to_string instead. | Mark Dickinson | 2009-04-29 | 2 | -82/+27 |
| | | |||||
| * | Issue #5864: format(1234.5, '.4') gives misleading result | Mark Dickinson | 2009-04-29 | 3 | -11/+112 |
| | | | | | (Backport of r72109 from py3k.) | ||||
| * | run autoconf | Benjamin Peterson | 2009-04-29 | 1 | -1/+32 |
| | | |||||
| * | More aifc tests. | R. David Murray | 2009-04-29 | 1 | -7/+53 |
| | | |||||
| * | - configure.in: Don't error, when no --with-dbmliborder option is present | Matthias Klose | 2009-04-29 | 1 | -4/+2 |
| | | |||||
| * | - Issue #4587: Add configure option --with-dbmliborder=db1:db2:... to specify | Matthias Klose | 2009-04-29 | 2 | -5/+6 |
| | | | | | the order that backends for the dbm extension are checked. | ||||
| * | - Issue #4587: Add configure option --with-dbmliborder=db1:db2:... to specify | Matthias Klose | 2009-04-29 | 4 | -33/+88 |
| | | | | | the order that backends for the dbm extension are checked. | ||||
| * | Now that we've got a test_aifc, add a few tests. | R. David Murray | 2009-04-29 | 1 | -0/+30 |
| | | |||||
| * | Fix issue 2245. aifc now skips any chunk type it doesn't actually | R. David Murray | 2009-04-29 | 6 | -8/+28 |
| | | | | | | | | process instead of throwing errors for anything not in an explicit skip list. This is per this spec: http://www.cnpbagwell.com/aiff-c.txt. Spec reference and test sound file provided by Santiago Peresón, fix based on patch by Hiroaki Kawai. | ||||
| * | Fixed #5874 : distutils.tests.test_config_cmd is not locale-sensitive anymore | Tarek Ziadé | 2009-04-29 | 2 | -1/+4 |
| | | |||||
| * | Make the doctests in the docs pass, except for those in the turtle module. | Georg Brandl | 2009-04-28 | 5 | -24/+28 |
| | | |||||
| * | Issue #4305: ctypes fails to build on mipsel-linux-gnu (detects mips | Thomas Heller | 2009-04-28 | 3 | -6/+8 |
| | | | | | instead of mipsel) | ||||
