| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Preparing for 2.5 final.v2.5 | Anthony Baxter | 2006-09-18 | 2 | -1/+8 |
| | | | | | | | (damn, it's nice to see the line #define PY_VERSION "2.5" in patchlevel.h) | ||||
| * | remove 2.5 final section from NEWS.txt until after rc2 (reduced confusion)v2.5c2 | Anthony Baxter | 2006-09-11 | 1 | -7/+0 |
| | | |||||
| * | preparing for 2.5c2 | Anthony Baxter | 2006-09-11 | 1 | -1/+1 |
| | | |||||
| * | Building with HP's cc on HP-UX turned up a couple of problems. | Neal Norwitz | 2006-09-11 | 1 | -0/+3 |
| | | | | | | | | | | | | | | _PyGILState_NoteThreadState was declared as static inconsistently. Make it static as it's not necessary outside of this module. Some tests failed because errno was reset to 0. (I think the tests that failed were at least: test_fcntl and test_mailbox). Ensure that errno doesn't change after a call to Py_END_ALLOW_THREADS. This only affected debug builds. This needs to be ported to HEAD. I'll try to remember to do that tomorrow. (Anyone, feel free to port it.) | ||||
| * | As mentioned on python-dev, reverting patch #1504333 because it introduced | Neal Norwitz | 2006-09-11 | 1 | -0/+2 |
| | | | | | | | | | an infinite loop in rev 47154. This patch also adds a test to prevent the regression. Will backport to 2.4 and head later. | ||||
| * | Add NEWS entries for ctypes backports. | Neal Norwitz | 2006-09-11 | 1 | -1/+5 |
| | | |||||
| * | Remove __unicode__ method so that ``unicode(BaseException)`` succeeds. | Brett Cannon | 2006-09-09 | 1 | -0/+3 |
| | | | | | Fixes bug #1551432. | ||||
| * | Backport inspect.py fix from rev 51803 | Nick Coghlan | 2006-09-08 | 1 | -0/+3 |
| | | |||||
| * | Backport from trunk r51737: | Hye-Shik Chang | 2006-09-07 | 1 | -0/+6 |
| | | | | | | | | | | Fixed a few bugs on cjkcodecs: - gbk and gb18030 codec now handle U+30FB KATAKANA MIDDLE DOT correctly. - iso2022_jp_2 codec now encodes into G0 for KS X 1001, GB2312 codepoints to conform the standard. - iso2022_jp_3 and iso2022_jp_2004 codec can encode JIS X 0213:2 codepoints now. | ||||
| * | Fixed bug #1531862: Do not close standard file descriptors in subprocess. | Gustavo Niemeyer | 2006-09-06 | 1 | -0/+2 |
| | | | | | | | | | | Let's try that once more. Buildbots were broken last time, but probably because tests were sending data to stderr for testing it (sending to a file doesn't touch the problem). The fix is still the same, but tests were reduced (removing tests to be able to fix something is weird, but oh well). | ||||
| * | Backport bug fix for SF bug report #1546372. | Marc-André Lemburg | 2006-09-06 | 1 | -0/+7 |
| | | |||||
| * | Fix missing import of the types module in logging.config. | Georg Brandl | 2006-09-06 | 1 | -0/+2 |
| | | | | | (backport from rev. 51785) | ||||
| * | Bug #1542051: Exceptions now correctly call PyObject_GC_UnTrack. | Georg Brandl | 2006-09-06 | 1 | -0/+4 |
| | | | | | | | Also make sure that every exception class has __module__ set to 'exceptions'. (backport) | ||||
| * | Bug #1550983: emit better error messages for erroneous relative | Georg Brandl | 2006-09-06 | 1 | -0/+3 |
| | | | | | | imports (if not in package and if beyond toplevel package). (backport from rev. 51765) | ||||
| * | Bug #1551427: fix a wrong NULL pointer check in the win32 version | Georg Brandl | 2006-09-06 | 1 | -0/+3 |
| | | | | | | of os.urandom(). (backport from rev. 51762) | ||||
| * | Revert 51759 because it broke all the buildbots | Neal Norwitz | 2006-09-06 | 1 | -2/+0 |
| | | |||||
| * | Backporting fix for bug #1531862, committed in 51758, into 2.5, | Gustavo Niemeyer | 2006-09-06 | 1 | -0/+2 |
| | | | | | making subprocess not close standard file descriptors. | ||||
| * | Fixing an improperly escaped grep in .spec file, pointed out by Neal Norwitz. | Sean Reifscheider | 2006-09-05 | 1 | -1/+1 |
| | | |||||
| * | Add another NEWS entry for a fix already in 2.5c1 | Neal Norwitz | 2006-09-05 | 1 | -0/+2 |
| | | |||||
| * | Add some NEWS for fixes already in 2.5c1 | Neal Norwitz | 2006-09-05 | 1 | -0/+4 |
| | | |||||
| * | Bug #1520864 (again): unpacking singleton tuples in list comprehensions and | Neal Norwitz | 2006-09-05 | 1 | -0/+5 |
| | | | | | | | | generator expressions (x for x, in ... ) works again. Sigh, I only fixed for loops the first time, not list comps and genexprs too. I couldn't find any more unpacking cases where there is a similar bug lurking. | ||||
| * | Patch #1540470, for OpenBSD 4.0. Backport candidate for 2.[34]. | Neal Norwitz | 2006-09-05 | 1 | -0/+2 |
| | | |||||
| * | Backport fix from 51683. | Neal Norwitz | 2006-09-05 | 1 | -0/+2 |
| | | |||||
| * | Backport fix for SF bug #1550714, itertools.tee raises SystemError | Neal Norwitz | 2006-09-05 | 1 | -0/+6 |
| | | |||||
| * | Fix str.rpartition(sep) when sep is not found in str. | Neal Norwitz | 2006-09-05 | 1 | -0/+3 |
| | | | | | Partially from SF patch #1551339, but also taken from head. | ||||
| * | This was found by Guido AFAIK on p3yk (sic) branch. | Neal Norwitz | 2006-09-05 | 1 | -0/+7 |
| | | |||||
| * | Fix SF bug #1546288, crash in dict_equal | Neal Norwitz | 2006-09-05 | 1 | -1/+10 |
| | | |||||
| * | i_divmod(): As discussed on Python-Dev, changed the overflow | Tim Peters | 2006-09-05 | 1 | -2/+5 |
| | | | | | | checking to live happily with recent gcc optimizations that assume signed integer arithmetic never overflows. | ||||
| * | SF patch #1551340 ] Updated spec file for 2.5 release (c2) | Neal Norwitz | 2006-09-05 | 1 | -15/+25 |
| | | |||||
| * | NEWS entry for decimal module changes | Nick Coghlan | 2006-09-03 | 1 | -0/+3 |
| | | |||||
| * | Patch #1545507: Exclude ctypes package in Win64 MSI file. | Martin v. Löwis | 2006-08-25 | 1 | -0/+2 |
| | | |||||
| * | - Patch #1541585: fix buffer overrun when performing repr() on | Neal Norwitz | 2006-08-21 | 2 | -0/+8 |
| | | | | | | | a unicode string in a build with wide unicode (UCS-4) support. I will forward port to 2.6. Can someone backport to 2.4? | ||||
| * | Backport 51432: | Neal Norwitz | 2006-08-21 | 1 | -0/+2 |
| | | | | | | Fix bug #1543303, tarfile adds padding that breaks gunzip. Patch # 1543897. (remove the padding) | ||||
| * | Patch #1542948: fix urllib2 header casing issue. With new test. | Georg Brandl | 2006-08-20 | 1 | -2/+2 |
| | | | | | (backport from rev. 51416) | ||||
| * | SF #1542693: Remove semi-colon at end of PyImport_ImportModuleEx macro | Neal Norwitz | 2006-08-19 | 1 | -4/+7 |
| | | |||||
| * | Bug #1541682: Fix example in the "Refcount details" API docs. | Georg Brandl | 2006-08-18 | 1 | -1/+11 |
| | | | | | | | Additionally, remove a faulty example showing PySequence_SetItem applied to a newly created list object and add notes that this isn't a good idea. (backport from rev. 51364) | ||||
| * | Bug #1541863: uuid.uuid1 failed to generate unique identifiers | Martin v. Löwis | 2006-08-18 | 1 | -0/+6 |
| | | | | | on systems with low clock resolution. | ||||
| * | Invoke debug mk1mf.pl after running Configure. | Martin v. Löwis | 2006-08-17 | 1 | -0/+10 |
| | | |||||
| * | Fix a bug in the ``compiler`` package that caused invalid code to be | Neil Schemenauer | 2006-08-16 | 1 | -0/+3 |
| | | | | | generated for generator expressions. | ||||
| * | Grammar fix | Andrew M. Kuchling | 2006-08-16 | 1 | -2/+2 |
| | | |||||
| * | Add NEWS item mentioning the reverted distutils version number patch. | Marc-André Lemburg | 2006-08-16 | 1 | -0/+5 |
| | | |||||
| * | Remove the special casing of Py_None when converting the return value | Thomas Heller | 2006-08-16 | 1 | -0/+5 |
| | | | | | | | | | | | of the Python part of a callback function to C. If it cannot be converted, call PyErr_WriteUnraisable with the exception we got. Before, arbitrary data has been passed to the calling C code in this case. (I'm not really sure the NEWS entry is understandable, but I cannot find better words) | ||||
| * | Wording/typo fixes | Andrew M. Kuchling | 2006-08-16 | 1 | -11/+11 |
| | | |||||
| * | The __repr__ method of a NULL py_object does no longer raise an | Thomas Heller | 2006-08-16 | 1 | -0/+3 |
| | | | | | | | | exception. Remove a stray '?' character from the exception text when the value is retrieved of such an object. Includes tests. | ||||
| * | news entry for 51307 | Anthony Baxter | 2006-08-16 | 1 | -0/+5 |
| | | |||||
| * | Build _hashlib on Windows. Build OpenSSL with masm assembler code. | Martin v. Löwis | 2006-08-16 | 1 | -0/+3 |
| | | | | | Fixes #1535502. | ||||
| * | Patch #1540892: site.py Quitter() class attempts to close sys.stdin | Kurt B. Kaiser | 2006-08-16 | 1 | -0/+3 |
| | | | | | | | | | | | before raising SystemExit, allowing IDLE to honor quit() and exit(). M Lib/site.py M Lib/idlelib/PyShell.py M Lib/idlelib/CREDITS.txt M Lib/idlelib/NEWS.txt M Misc/NEWS | ||||
| * | preparing for 2.5c1 | Anthony Baxter | 2006-08-16 | 2 | -2/+2 |
| | | |||||
| * | Fix the test for SocketServer so it should pass on cygwin and not fail | Neal Norwitz | 2006-08-15 | 1 | -0/+3 |
| | | | | | | | | | sporadically on other platforms. This is really a band-aid that doesn't fix the underlying issue in SocketServer. It's not clear if it's worth it to fix SocketServer, however, I opened a bug to track it: http://python.org/sf/1540386 | ||||
| * | Georg fixed one of my bugs, so I'll repay him with 2 NEWS entries. | Neal Norwitz | 2006-08-15 | 1 | -0/+4 |
| | | | | | Now we're even. :-) | ||||
