| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | bump version to 2.7a1v2.7a1 | Benjamin Peterson | 2009-12-05 | 2 | -3/+3 |
| | | |||||
| * | move RPM spec for 2.7 | Benjamin Peterson | 2009-12-05 | 1 | -0/+0 |
| | | |||||
| * | Add missing issue number in Misc/NEWS entry. | Mark Dickinson | 2009-12-04 | 1 | -1/+1 |
| | | |||||
| * | Issue 7431: use TESTFN in test_linecache instead of trying to create a | R. David Murray | 2009-12-03 | 1 | -0/+4 |
| | | | | | | file in the Lib/test directory, which might be read-only for the user running the tests. | ||||
| * | Add Christoph Gohlke, for the issue 4120 work. | Martin v. Löwis | 2009-12-03 | 1 | -0/+1 |
| | | |||||
| * | Issue #4120: Drop reference to CRT from manifest when building | Martin v. Löwis | 2009-12-03 | 1 | -0/+3 |
| | | | | | extensions with msvc9compiler. | ||||
| * | disable pymalloc tricks with the --with-valgrind option #2422 | Benjamin Peterson | 2009-12-03 | 1 | -0/+5 |
| | | | | | Patch from James Henstridge. | ||||
| * | Issue #7333: The `posix` module gains an `initgroups()` function providing | Antoine Pitrou | 2009-12-02 | 1 | -0/+4 |
| | | | | | | access to the initgroups(3) C library call on Unix systems which implement it. Patch by Jean-Paul Calderone. | ||||
| * | #7419: Fix a crash on Windows in locale.setlocale() when the category | Amaury Forgeot d'Arc | 2009-12-01 | 1 | -1/+4 |
| | | | | | is outside the allowed range. | ||||
| * | Fixed #7408: dropped group ownership checking because it relies on ↵ | Tarek Ziadé | 2009-11-29 | 1 | -0/+4 |
| | | | | | os-specific rules | ||||
| * | Issue #3382: Make '%F' and float.__format__('F') convert results to upper ↵ | Eric Smith | 2009-11-29 | 1 | -0/+4 |
| | | | | | case. Much of the patch came from Mark Dickinson. | ||||
| * | Issue #1515: Enable use of deepcopy() with instance methods. Patch by ↵ | Antoine Pitrou | 2009-11-28 | 2 | -0/+4 |
| | | | | | Robert Collins. | ||||
| * | Issue #7403: Fixed possible race condition in lock creation. | Vinay Sajip | 2009-11-27 | 1 | -0/+2 |
| | | |||||
| * | Issue #6508: Add posix.{getresuid,getresgid,setresuid,setresgid}. | Martin v. Löwis | 2009-11-27 | 1 | -0/+2 |
| | | |||||
| * | Add ACKS entry for Pablo Mouzo | Antoine Pitrou | 2009-11-27 | 1 | -0/+1 |
| | | |||||
| * | Issue #6845: Add restart support for binary upload in ftplib. The | Antoine Pitrou | 2009-11-27 | 1 | -0/+4 |
| | | | | | | | | `storbinary()` method of FTP and FTP_TLS objects gains an optional `rest` argument. Patch by Pablo Mouzo. (note: the patch also adds a test for the rest argument in retrbinary()) | ||||
| * | Issue #5788: `datetime.timedelta` objects get a new `total_seconds()` method ↵ | Antoine Pitrou | 2009-11-25 | 1 | -0/+4 |
| | | | | | | | returning the total number of seconds in the duration. Patch by Brian Quinlan. | ||||
| * | Issue #6615: logging: Used weak references in internal handler list. Thanks ↵ | Vinay Sajip | 2009-11-25 | 1 | -2/+4 |
| | | | | | to flox (Florent Xicluna) for the patch. | ||||
| * | Issue #7117, continued: Remove substitution of %g-style formatting for | Mark Dickinson | 2009-11-23 | 1 | -0/+3 |
| | | | | | | %f-style formatting, which used to occur at high precision. Float formatting should now be consistent between 2.7 and 3.1. | ||||
| * | Remove restriction on precision when formatting floats. This is the | Mark Dickinson | 2009-11-23 | 1 | -0/+4 |
| | | | | | | first step towards removing the %f -> %g switch (see issues 7117, 5859). | ||||
| * | Fix for issue1488943 - difflib.Differ() doesn't always add hints for tab | Senthil Kumaran | 2009-11-23 | 1 | -0/+2 |
| | | | | | characters. | ||||
| * | Issue #6123: Fix opening empty archives and files. | Lars Gustäbel | 2009-11-22 | 1 | -0/+3 |
| | | | | | | | | | | | | | | | | | | | | | | | | (Note that an empty archive is not the same as an empty file. An empty archive contains no members and is correctly terminated with an EOF block full of zeros. An empty file contains no data at all.) The problem was that although tarfile was able to create empty archives, it failed to open them raising a ReadError. On the other hand, tarfile opened empty files without error in most read modes and presented them as empty archives. (However, some modes still raised errors: "r|gz" raised ReadError, but "r:gz" worked, "r:bz2" even raised EOFError.) In order to get a more fine-grained control over the various internal error conditions I now split up the HeaderError exception into a number of meaningful sub-exceptions. This makes it easier in the TarFile.next() method to react to the different conditions in the correct way. The visible change in its behaviour now is that tarfile will open empty archives correctly and raise ReadError consistently for empty files. | ||||
| * | spelling | Benjamin Peterson | 2009-11-19 | 1 | -1/+1 |
| | | |||||
| * | add news notes for r76416 | Benjamin Peterson | 2009-11-19 | 1 | -0/+4 |
| | | |||||
| * | Misc/NEWS entries for issue 7117. | Mark Dickinson | 2009-11-19 | 1 | -4/+33 |
| | | |||||
| * | Fix for issue #7085 | Ronald Oussoren | 2009-11-19 | 1 | -0/+3 |
| | | | | | | | | | | | | | | | On MacOSX 10.6 the CoreFoundation framework must be initialized on the main thread, the constructor function in that framework will cause an SIGABRT when it is called on any other thread. Because a number of extension link (indirectly) to CoreFoundation and the Python core itself didn't the interpreter crashed when importing some extensions, such as _locale, on a secondary thread. This fix ensures that Python is linked to CoreFoundation on OSX, which results in the CoreFoundation constructor being called when Python is loaded. This does not require code changes. | ||||
| * | dragfullwindows can have value 2 | Tarek Ziadé | 2009-11-19 | 1 | -0/+3 |
| | | |||||
| * | #5037 proxy __unicode__ correctly | Benjamin Peterson | 2009-11-19 | 1 | -0/+3 |
| | | |||||
| * | Issue #7341: Close the internal file object in the TarFile | Lars Gustäbel | 2009-11-18 | 1 | -0/+3 |
| | | | | | constructor in case of an error. | ||||
| * | Issue #7117, continued: Change round implementation to use the ↵ | Mark Dickinson | 2009-11-18 | 1 | -0/+9 |
| | | | | | | | | | correctly-rounded string <-> float conversions; this makes sure that the result of the round operation is correctly rounded, and hence displays nicely using the new float repr. | ||||
| * | #7293: distutils.test_msvc9compiler now uses a key that exists on any fresh ↵ | Tarek Ziadé | 2009-11-18 | 1 | -0/+3 |
| | | | | | windows install | ||||
| * | #1757126: fix typo with the cyrillic_asian alias | Philip Jenvey | 2009-11-17 | 1 | -0/+2 |
| | | |||||
| * | Issue #7328: don't corrupt sys.path when running pydoc with the -m switch | Nick Coghlan | 2009-11-15 | 1 | -0/+2 |
| | | |||||
| * | Issue #2054: ftplib now provides an FTP_TLS class to do secure FTP using | Antoine Pitrou | 2009-11-15 | 1 | -0/+3 |
| | | | | | TLS or SSL. Patch by Giampaolo Rodola'. | ||||
| * | Issue #7228: Add '%lld' and '%llu' support to PyFormat_FromString, | Mark Dickinson | 2009-11-15 | 1 | -0/+3 |
| | | | | | PyFormat_FromStringV and PyErr_Format. | ||||
| * | Issue #4969: The mimetypes module now reads the MIME database from | Antoine Pitrou | 2009-11-15 | 1 | -0/+3 |
| | | | | | the registry under Windows. Patch by Gabriel Genellina. | ||||
| * | Issue #6816: expose the zipfile and directory execution mechanism to Python ↵ | Nick Coghlan | 2009-11-15 | 1 | -0/+6 |
| | | | | | code via the runpy module. Also consolidated some script execution functionality in the test harness into a helper module and removed some implementation details from the runpy module documentation. | ||||
| * | Issue 7324: add a sanity check to regrtest argument parsing to | R. David Murray | 2009-11-15 | 1 | -0/+3 |
| | | | | | catch the case of an option with no handler. | ||||
| * | Issue #7312 (new feature): Add a -F flag to run the selected tests in | R. David Murray | 2009-11-14 | 1 | -0/+3 |
| | | | | | | a loop until a test fails. Can be combined with -j. Patch by Antoine Pitrou. | ||||
| * | Issue #7318: multiprocessing now uses a timeout when it fails to establish | Antoine Pitrou | 2009-11-13 | 1 | -0/+5 |
| | | | | | | | a connection with another process, rather than looping endlessly. The default timeout is 20 seconds, which should be amply sufficient for local connections. | ||||
| * | fix several compile() issues by translating newlines in the tokenizer | Benjamin Peterson | 2009-11-12 | 1 | -0/+3 |
| | | |||||
| * | Issue #7295: Do not use a hardcoded file name in test_tarfile. | Antoine Pitrou | 2009-11-11 | 1 | -0/+2 |
| | | |||||
| * | Issue #7197: Allow unittest.TextTestRunner objects to be pickled and | Antoine Pitrou | 2009-11-10 | 1 | -0/+4 |
| | | | | | | | | unpickled. This fixes crashes under Windows when trying to run test_multiprocessing in verbose mode. Additionally, Test_TextTestRunner hadn't been enabled in test_unittest. | ||||
| * | Issue #7282: Fix a memory leak when an RLock was used in a thread other | Antoine Pitrou | 2009-11-09 | 1 | -0/+4 |
| | | | | | | than those started through `threading.Thread` (for example, using `thread.start_new_thread()`. | ||||
| * | Properly detect whether a C file is using tabs or spaces for Vim. | Brett Cannon | 2009-11-08 | 2 | -18/+21 |
| | | | | | Closes issue #5611. Thanks Kirk McDonald and Johannes Hoff. | ||||
| * | Issue #7270: Add some dedicated unit tests for multi-thread synchronization | Antoine Pitrou | 2009-11-06 | 1 | -0/+3 |
| | | | | | primitives such as Lock, RLock, Condition, Event and Semaphore. | ||||
| * | Issue #7264: Fix a possible deadlock when deallocating thread-local objects | Antoine Pitrou | 2009-11-05 | 1 | -0/+3 |
| | | | | | which are part of a reference cycle. | ||||
| * | Issue #7211: Allow 64-bit values for the `ident` and `data` fields of kevent | Antoine Pitrou | 2009-11-04 | 2 | -0/+4 |
| | | | | | | | objects on 64-bit systems. Patch by Michael Broghton. I will revert this checkin if it causes problems on our BSD buildbots. | ||||
| * | Since r76034 was successful, add a NEWS entry for it. | Antoine Pitrou | 2009-11-02 | 1 | -0/+4 |
| | | |||||
| * | Fix exception handling in itertools.izip_longest(). | Raymond Hettinger | 2009-11-01 | 1 | -0/+3 |
| | | |||||
