summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Collapse)AuthorAgeFilesLines
* bump version to 2.7a1v2.7a1Benjamin Peterson2009-12-052-3/+3
|
* move RPM spec for 2.7Benjamin Peterson2009-12-051-0/+0
|
* Add missing issue number in Misc/NEWS entry.Mark Dickinson2009-12-041-1/+1
|
* Issue 7431: use TESTFN in test_linecache instead of trying to create aR. David Murray2009-12-031-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öwis2009-12-031-0/+1
|
* Issue #4120: Drop reference to CRT from manifest when buildingMartin v. Löwis2009-12-031-0/+3
| | | | extensions with msvc9compiler.
* disable pymalloc tricks with the --with-valgrind option #2422Benjamin Peterson2009-12-031-0/+5
| | | | Patch from James Henstridge.
* Issue #7333: The `posix` module gains an `initgroups()` function providingAntoine Pitrou2009-12-021-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 categoryAmaury Forgeot d'Arc2009-12-011-1/+4
| | | | is outside the allowed range.
* Fixed #7408: dropped group ownership checking because it relies on ↵Tarek Ziadé2009-11-291-0/+4
| | | | os-specific rules
* Issue #3382: Make '%F' and float.__format__('F') convert results to upper ↵Eric Smith2009-11-291-0/+4
| | | | case. Much of the patch came from Mark Dickinson.
* Issue #1515: Enable use of deepcopy() with instance methods. Patch by ↵Antoine Pitrou2009-11-282-0/+4
| | | | Robert Collins.
* Issue #7403: Fixed possible race condition in lock creation.Vinay Sajip2009-11-271-0/+2
|
* Issue #6508: Add posix.{getresuid,getresgid,setresuid,setresgid}.Martin v. Löwis2009-11-271-0/+2
|
* Add ACKS entry for Pablo MouzoAntoine Pitrou2009-11-271-0/+1
|
* Issue #6845: Add restart support for binary upload in ftplib. TheAntoine Pitrou2009-11-271-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 Pitrou2009-11-251-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 Sajip2009-11-251-2/+4
| | | | to flox (Florent Xicluna) for the patch.
* Issue #7117, continued: Remove substitution of %g-style formatting forMark Dickinson2009-11-231-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 theMark Dickinson2009-11-231-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 tabSenthil Kumaran2009-11-231-0/+2
| | | | characters.
* Issue #6123: Fix opening empty archives and files.Lars Gustäbel2009-11-221-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.
* spellingBenjamin Peterson2009-11-191-1/+1
|
* add news notes for r76416Benjamin Peterson2009-11-191-0/+4
|
* Misc/NEWS entries for issue 7117.Mark Dickinson2009-11-191-4/+33
|
* Fix for issue #7085Ronald Oussoren2009-11-191-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 2Tarek Ziadé2009-11-191-0/+3
|
* #5037 proxy __unicode__ correctlyBenjamin Peterson2009-11-191-0/+3
|
* Issue #7341: Close the internal file object in the TarFileLars Gustäbel2009-11-181-0/+3
| | | | constructor in case of an error.
* Issue #7117, continued: Change round implementation to use the ↵Mark Dickinson2009-11-181-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-181-0/+3
| | | | windows install
* #1757126: fix typo with the cyrillic_asian aliasPhilip Jenvey2009-11-171-0/+2
|
* Issue #7328: don't corrupt sys.path when running pydoc with the -m switchNick Coghlan2009-11-151-0/+2
|
* Issue #2054: ftplib now provides an FTP_TLS class to do secure FTP usingAntoine Pitrou2009-11-151-0/+3
| | | | TLS or SSL. Patch by Giampaolo Rodola'.
* Issue #7228: Add '%lld' and '%llu' support to PyFormat_FromString,Mark Dickinson2009-11-151-0/+3
| | | | PyFormat_FromStringV and PyErr_Format.
* Issue #4969: The mimetypes module now reads the MIME database fromAntoine Pitrou2009-11-151-0/+3
| | | | the registry under Windows. Patch by Gabriel Genellina.
* Issue #6816: expose the zipfile and directory execution mechanism to Python ↵Nick Coghlan2009-11-151-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 toR. David Murray2009-11-151-0/+3
| | | | catch the case of an option with no handler.
* Issue #7312 (new feature): Add a -F flag to run the selected tests inR. David Murray2009-11-141-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 establishAntoine Pitrou2009-11-131-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 tokenizerBenjamin Peterson2009-11-121-0/+3
|
* Issue #7295: Do not use a hardcoded file name in test_tarfile.Antoine Pitrou2009-11-111-0/+2
|
* Issue #7197: Allow unittest.TextTestRunner objects to be pickled andAntoine Pitrou2009-11-101-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 otherAntoine Pitrou2009-11-091-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 Cannon2009-11-082-18/+21
| | | | Closes issue #5611. Thanks Kirk McDonald and Johannes Hoff.
* Issue #7270: Add some dedicated unit tests for multi-thread synchronizationAntoine Pitrou2009-11-061-0/+3
| | | | primitives such as Lock, RLock, Condition, Event and Semaphore.
* Issue #7264: Fix a possible deadlock when deallocating thread-local objectsAntoine Pitrou2009-11-051-0/+3
| | | | which are part of a reference cycle.
* Issue #7211: Allow 64-bit values for the `ident` and `data` fields of keventAntoine Pitrou2009-11-042-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 Pitrou2009-11-021-0/+4
|
* Fix exception handling in itertools.izip_longest().Raymond Hettinger2009-11-011-0/+3
|