| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | updates to NEWS | Anthony Baxter | 2005-03-29 | 1 | -0/+13 |
| | | |||||
| * | Move exception finalisation later in the shutdown process - this | Anthony Baxter | 2005-03-29 | 1 | -0/+11 |
| | | | | | fixes the crash seen in bug #1165761 | ||||
| * | - Fixed decimal operator and comparison methods to return NotImplemented | Raymond Hettinger | 2005-03-27 | 1 | -0/+4 |
| | | | | | | instead of raising a TypeError when interacting with other types. Allows other classes to successfully implement __radd__ style methods. | ||||
| * | fix two typos in python(1) | Matthias Klose | 2005-03-20 | 1 | -2/+2 |
| | | |||||
| * | Fix typo. | Walter Dörwald | 2005-03-18 | 1 | -1/+1 |
| | | |||||
| * | 2.4.1rc2 setup | Anthony Baxter | 2005-03-16 | 1 | -1/+2 |
| | | |||||
| * | Decimal special values did not hash properly. | Raymond Hettinger | 2005-03-15 | 1 | -0/+3 |
| | | |||||
| * | Backport of change to os.access to encode Unicode file names with | Martin v. Löwis | 2005-03-13 | 1 | -0/+5 |
| | | | | | the file system encoding. | ||||
| * | Fix test_socket's test for socket.getfqdn() to also accept the result from | Brett Cannon | 2005-03-12 | 1 | -0/+8 |
| | | | | | | | socket.gethostname() as a valid return value. Also clarified the docs as they were a little hazy on the subject matter. | ||||
| * | Bug #1160802: Can't build Zope on Windows w/ 2.4.1c1. | Tim Peters | 2005-03-11 | 1 | -4/+22 |
| | | | | | | | | | | | | | | MSVCCompiler.initialize(): set self.initialized to True, as suggested by AMK. Else we keep growing the PATH endlessly, with each new C extension built, until putenv() complains. This doesn't appear to be an issue on the HEAD (MSVCCompiler initializes itself via __init__() on the HEAD). Also added a "2.4.1c2" section to NEWS. Not meant to imply that Anthony will do a 2.4.1c2 release, just needed to a place to put the news about the MSVCCompiler bugfix. | ||||
| * | pre-release magic | Anthony Baxter | 2005-03-09 | 2 | -5/+5 |
| | | |||||
| * | Build with --disable-unicode again. Fixes #1158607. | Martin v. Löwis | 2005-03-08 | 1 | -0/+2 |
| | | |||||
| * | Mention SF #1149508 (textwrap and hyphenated numbers). | Greg Ward | 2005-03-05 | 1 | -0/+4 |
| | | |||||
| * | Patches #925152, #1118602: Avoid reading after the end of the buffer | Martin v. Löwis | 2005-03-04 | 1 | -0/+3 |
| | | | | | in pyexpat.GetInputContext. | ||||
| * | Patch #1075887: Don't require MSVC in distutils if there is nothing | Martin v. Löwis | 2005-03-04 | 1 | -0/+3 |
| | | | | | to build. Will backport to 2.4 | ||||
| * | Patch #1103407: Properly deal with tarfile iterators when untarring | Martin v. Löwis | 2005-03-03 | 1 | -0/+3 |
| | | | | | symbolic links on Windows. Fixes #1100429. | ||||
| * | SF bug #1155938: Missing None check for __init__(). | Raymond Hettinger | 2005-03-03 | 1 | -0/+3 |
| | | |||||
| * | Patch #1117454: Remove code to special-case cookies without values | Martin v. Löwis | 2005-03-03 | 1 | -0/+3 |
| | | | | | in LWPCookieJar. | ||||
| * | Patch #1117339: Add cookielib special name tests. | Martin v. Löwis | 2005-03-03 | 1 | -0/+2 |
| | | |||||
| * | Patch #1112812: Make bsddb/__init__.py more friendly for modulefinder. | Martin v. Löwis | 2005-03-03 | 1 | -0/+2 |
| | | |||||
| * | Clear internal call error in 'L' format. Fixes #723201. | Martin v. Löwis | 2005-03-03 | 1 | -0/+2 |
| | | |||||
| * | Patch #1121234: Properly cleanup _exit and tkerror commands. | Martin v. Löwis | 2005-03-01 | 1 | -0/+2 |
| | | |||||
| * | Patch #1093585: raise a ValueError for negative history items in | Martin v. Löwis | 2005-02-27 | 1 | -1/+7 |
| | | | | | remove_history and replace_history. | ||||
| * | Backport: NEWS blurb for fix of: | Michael W. Hudson | 2005-02-17 | 1 | -0/+3 |
| | | | | | [ 1124295 ] Function's __name__ no longer accessible in restricted mode | ||||
| * | Update refences to "Macintosh" to reflect the state of affairs for OS X and not | Brett Cannon | 2005-02-13 | 1 | -1/+10 |
| | | | | | | | Mac OS 9. Backport of patch #1095802. | ||||
| * | Fix tzset() check to not require the existence of tm->tm_zone. Also added more | Brett Cannon | 2005-02-10 | 2 | -0/+7 |
| | | | | | | | sanity checks for tzname when HAVE_TZNAME is defined. Closes bug #1096244. Thanks Gregory Bond. | ||||
| * | Security fix PSF-2005-001 for SimpleXMLRPCServer.py. | Guido van Rossum | 2005-02-03 | 1 | -0/+4 |
| | | |||||
| * | Revert os.py 1.75, and directly implement update. | Martin v. Löwis | 2005-01-29 | 1 | -0/+2 |
| | | | | | Fixes #1110478 and #1100235. | ||||
| * | Partially revert #1074011; don't try to fflush stdin. | Martin v. Löwis | 2005-01-27 | 1 | -1/+1 |
| | | |||||
| * | Flush std{in,out,err} before closing it. Fixes #1074011. | Martin v. Löwis | 2005-01-23 | 1 | -0/+3 |
| | | |||||
| * | distutils/command/install.py change. | Thomas Heller | 2005-01-20 | 1 | -0/+2 |
| | | |||||
| * | Started on Macintosh section. | Jack Jansen | 2005-01-07 | 1 | -1/+19 |
| | | |||||
| * | Updating the Idle wrapper to match the current CVS copy. | Sean Reifschneider | 2005-01-05 | 1 | -3/+9 |
| | | |||||
| * | [Bug #1083110] calling .flush() on decompress objects causes a segfault due ↵ | Andrew M. Kuchling | 2004-12-28 | 1 | -0/+3 |
| | | | | | to an uninitialized pointer: fixes the problem and adds a test case | ||||
| * | Document bdist_wininst changes. | Thomas Heller | 2004-12-22 | 1 | -0/+2 |
| | | |||||
| * | Document resolved MSI issues. | Martin v. Löwis | 2004-12-22 | 1 | -0/+11 |
| | | |||||
| * | Backport checkin: | Walter Dörwald | 2004-12-22 | 1 | -0/+4 |
| | | | | | Add NEWS entry about bug #1076985. | ||||
| * | Mentioned marshal.dumps()'s fix in the NEWS. | Armin Rigo | 2004-12-21 | 1 | -0/+3 |
| | | |||||
| * | SF bug #951915: fix bug in StringIO.truncate - length not changed | Raymond Hettinger | 2004-12-20 | 1 | -0/+3 |
| | | | | | (Patch by Armin Rigo.) | ||||
| * | Bug #1083645 | Raymond Hettinger | 2004-12-18 | 1 | -0/+2 |
| | | | | | * The decimal module wouldn't run on builds without threads. | ||||
| * | Move news items to the correct sections. | Raymond Hettinger | 2004-12-17 | 1 | -5/+6 |
| | | |||||
| * | Backport fixes for bugs #1086555 and #1085744. | Raymond Hettinger | 2004-12-17 | 1 | -0/+5 |
| | | |||||
| * | SF bug #1083202: UnboundLocalError raised by atexit module | Raymond Hettinger | 2004-12-11 | 1 | -0/+3 |
| | | | | | The sys module could be called before being imported. | ||||
| * | SF bug #1078905: Docs for unittest run() methods are misleading | Raymond Hettinger | 2004-12-04 | 1 | -0/+5 |
| | | |||||
| * | Properly define HAVE_TERM_H if term.h is detected. | Martin v. Löwis | 2004-11-30 | 1 | -0/+17 |
| | | |||||
| * | whoops! | Anthony Baxter | 2004-11-30 | 1 | -2/+2 |
| | | |||||
| * | doodedoodedoo on the way to 2.4 final | Anthony Baxter | 2004-11-30 | 1 | -39/+3 |
| | | |||||
| * | preparing for 2.4 final (wooooooo!) | Anthony Baxter | 2004-11-29 | 1 | -1/+1 |
| | | |||||
| * | Hye-Shik Chang's fix for Bug 875692. | Kurt B. Kaiser | 2004-11-23 | 1 | -0/+13 |
| | | | | | | | | | | Improve signal handling, especially when using threads, by forcing an early re-execution of PyEval_EvalFrame() "periodic" code when things_to_do is not cleared by Py_MakePendingCalls(). M Misc/NEWS M Python/ceval.c | ||||
| * | 2.4rc1 | Anthony Baxter | 2004-11-18 | 2 | -2/+2 |
| | | |||||
