Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Relocate the misplaced heading.v2.4.3 | Hye-Shik Chang | 2006-03-28 | 1 | -3/+3 |
| | |||||
* | Ubuntu bug #29289: Fixed a bug that the gb18030 codec raises | Hye-Shik Chang | 2006-03-28 | 1 | -0/+6 |
| | | | | | RuntimeError on encoding surrogate pair area on UCS4 build. This is a partial backport of r43320. (Approved by Anthony Baxter) | ||||
* | after discussions with perky, reverted fix for Bug #1379994: Builtin | Anthony Baxter | 2006-03-28 | 1 | -0/+4 |
| | | | | | | | | | unicode_escape and raw_unicode_escape codec now encodes backslash correctly. This caused another issue for unicode repr strings being double-escaped (SF Bug #1459029). Correct fix will be in 2.5, but is too risky for 2.4.3. Added a testcase for #1459029. | ||||
* | news for test_capi change | Anthony Baxter | 2006-03-28 | 1 | -2/+5 |
| | |||||
* | preparing for 2.4.3 final | Anthony Baxter | 2006-03-28 | 1 | -0/+11 |
| | |||||
* | 2.4.3c1 | Anthony Baxter | 2006-03-23 | 1 | -1/+1 |
| | |||||
* | Change SystemError into SyntaxError, when a Unicode string | Martin v. Löwis | 2006-03-22 | 1 | -0/+3 |
| | | | | | containing an encoding declaration is compile()d. Fixes #1115379. | ||||
* | Backport from trunk r42989: | Hye-Shik Chang | 2006-03-13 | 1 | -0/+3 |
| | | | | | Bug #1448490: Fixed a bug that ISO-2022 codecs could not handle SS2 (single-shift 2) escape sequences correctly. | ||||
* | Backport of 42960, to support the options buildbot uses. | Martin v. Löwis | 2006-03-10 | 1 | -0/+2 |
| | |||||
* | Return value off PyErr_Warn() for raising string exceptions was not being | Brett Cannon | 2006-02-27 | 1 | -0/+4 |
| | | | | | checked. Problem when 'warnings' was set to "error" and thus would re-raise a new exception. | ||||
* | Merge rev 42607 from the trunk. | Tim Peters | 2006-02-27 | 1 | -0/+6 |
| | | | | | | | | | Patch 1413181, by Gabriel Becedillas. PyThreadState_Delete(): if the auto-GIL-state machinery knows about the thread state, forget it (since the thread state is being deleted, continuing to remember it can't help, but can hurt if another thread happens to get created with the same thread id). | ||||
* | Trimmed trailing whitespace. | Tim Peters | 2006-02-27 | 1 | -8/+8 |
| | |||||
* | Backport 41753: | Neal Norwitz | 2006-02-21 | 1 | -0/+2 |
| | | | | | Bug #1378022, UTF-8 files with a leading BOM crashed the interpreter. Also bug #1435487 (dup). | ||||
* | Bug #854823: socketmodule now builds on Sun platforms even when | Georg Brandl | 2006-02-20 | 1 | -0/+3 |
| | | | | INET_ADDRSTRLEN is not defined. | ||||
* | Make clear that patch #1336582 wasn't a new feature. | Georg Brandl | 2006-02-19 | 1 | -1/+1 |
| | |||||
* | Patch #1337756: fileinput now accepts Unicode filenames. | Georg Brandl | 2006-02-19 | 1 | -0/+2 |
| | |||||
* | Patch #1373643: The chunk module can now read chunks larger than | Georg Brandl | 2006-02-18 | 1 | -0/+3 |
| | | | | two gigabytes. | ||||
* | Bug #1430298: It is now possible to send a mail with an empty | Georg Brandl | 2006-02-17 | 1 | -0/+3 |
| | | | | return address using smtplib. | ||||
* | Bug #1432260: better handle lambda functions' names in pydoc | Georg Brandl | 2006-02-17 | 1 | -0/+3 |
| | |||||
* | Patch #1432345: Make python compile on DragonFly. | Martin v. Löwis | 2006-02-17 | 1 | -0/+2 |
| | |||||
* | Patch #428494: Prefer linking against ncursesw over ncurses library | Martin v. Löwis | 2006-02-11 | 1 | -0/+5 |
| | |||||
* | Backport: | Neal Norwitz | 2006-02-07 | 1 | -0/+3 |
| | | | | | | | | | | | | | | | Bug #876637, prevent stack corruption when socket descriptor is larger than FD_SETSIZE. This can only be acheived with ulimit -n SOME_NUMBER_BIGGER_THAN_FD_SETSIZE which is typically only available to root. Since this wouldn't normally be run in a test (ie, run as root), it doesn't seem too worthwhile to add a normal test. The bug report has one version of a test. I've written another. Not sure what the best thing to do is. Do the check before calling internal_select() because we can't set an error in between Py_BEGIN_ALLOW_THREADS and Py_END_ALLOW_THREADS. This seemed the clearest solution. | ||||
* | Backport: | Neal Norwitz | 2006-02-05 | 1 | -0/+3 |
| | | | | | Patch #1407135, bug #1424041: mmap.mmap(-1, size, ...) can return anonymous memory again on Unix. | ||||
* | Backport: | Neal Norwitz | 2006-01-25 | 1 | -0/+3 |
| | | | | Fix bug #1413192, fix seg fault in bsddb if a txn was deleted before the env. | ||||
* | Remove NEWS entry of reverted checkin. | Georg Brandl | 2006-01-20 | 1 | -2/+0 |
| | |||||
* | Bug #1407902: Added support for sftp:// URIs to urlparse. | Georg Brandl | 2006-01-20 | 1 | -0/+2 |
| | |||||
* | Bug #1402224: Add warning to dl docs about crashes. | Georg Brandl | 2006-01-20 | 1 | -0/+2 |
| | |||||
* | Bug #1396471: Document that Windows' ftell() can return invalid | Georg Brandl | 2006-01-20 | 1 | -0/+3 |
| | | | | values for text files with UNIX-style line endings. | ||||
* | Bug #1371247: Update Windows LCIDs in locale.py. | Georg Brandl | 2006-01-20 | 1 | -2/+4 |
| | |||||
* | Fix typo | Neal Norwitz | 2006-01-14 | 1 | -1/+1 |
| | |||||
* | Backport: | Neal Norwitz | 2006-01-14 | 1 | -0/+2 |
| | | | | | | | Fix SF bug #1402308, segfault when using mmap(-1, ...) This didn't crash on Linux, but valgrind complained. I'm not sure if this test is valid on Windows. | ||||
* | Bug #1394565: SimpleHTTPServer now doesn't choke on query paramters | Georg Brandl | 2006-01-13 | 1 | -0/+3 |
| | | | | any more. | ||||
* | Bug #1403410: The warnings module now doesn't get confused | Georg Brandl | 2006-01-13 | 1 | -0/+3 |
| | | | | when it can't find out the module name it generates a warning for. | ||||
* | Backport: | Neal Norwitz | 2006-01-10 | 1 | -0/+4 |
| | | | | | | SF bug #1400822, Extended version of _curses over{lay,write} does not work Fix signatures to conform to doc (also fixed ungetmouse()). | ||||
* | Backport: | Neal Norwitz | 2006-01-10 | 1 | -0/+4 |
| | | | | | | | | | | | | | | | | - Patch #1400181, fix unicode string formatting to not use the locale. This is how string objects work. u'%f' could use , instead of . for the decimal point. Now both strings and unicode always use periods. This is the code that would break: import locale locale.setlocale(locale.LC_NUMERIC, 'de_DE') u'%.1f' % 1.0 assert '1.0' == u'%.1f' % 1.0 I couldn't create a test case which fails, but this fixes the problem. (tested in interpreter and reported fixed by others) | ||||
* | Backport: | Neal Norwitz | 2006-01-09 | 1 | -0/+3 |
| | | | | | | | Fix bugs #1244610, #1392915, fix build problem on OpenBSD 3.7 and 3.8. configure would break checking curses.h. Also fix whitespace consistency which I forgot to mention in the head checkin. | ||||
* | Backport: | Neal Norwitz | 2006-01-09 | 1 | -0/+3 |
| | | | | | Bug #1400115, Fix segfault when calling curses.panel.userptr() without prior setting of the userptr. | ||||
* | Patch #881820: look for openpty and forkpty also in libbsd. | Martin v. Löwis | 2006-01-08 | 1 | -0/+2 |
| | |||||
* | Backport 38951: | Neal Norwitz | 2006-01-05 | 1 | -0/+3 |
| | | | | | fixes pybsddb SF bug id 1215432. DB.associate() would crash when a DBError was supposed to be raised. | ||||
* | Backport: Fix errors on 64-bit platforms. (There are still some test problems | Neal Norwitz | 2006-01-05 | 1 | -0/+2 |
| | |||||
* | Patch by Ori Avtalion to fix a minor display glitch in the RightArrow. | Barry Warsaw | 2006-01-01 | 1 | -0/+5 |
| | | | | I will port forward to 2.5. | ||||
* | Use -xcode=pic32 for SunPro. | Martin v. Löwis | 2005-12-30 | 1 | -0/+2 |
| | |||||
* | [ 959576 ] Can't build Python on POSIX w/o $HOME (backport) | Georg Brandl | 2005-12-27 | 1 | -0/+3 |
| | |||||
* | Backport: Patch #1117398: fix cookielib LoadError | Neal Norwitz | 2005-12-23 | 1 | -0/+4 |
| | |||||
* | Bug #1379994: Fix *unicode_escape codecs to encode r'\' as r'\\' | Hye-Shik Chang | 2005-12-17 | 1 | -0/+3 |
| | | | | just like string codecs. | ||||
* | Bug #1290333: Added a workaround for cjkcodecs' _codecs_cn module | Hye-Shik Chang | 2005-12-12 | 1 | -0/+3 |
| | | | | build problem on AIX. | ||||
* | backport: bug #1365984, urllib and data: URLs^^ | Georg Brandl | 2005-11-26 | 1 | -0/+2 |
| | |||||
* | bug #1281408: make Py_BuildValue work with unsigned longs and long longs | Georg Brandl | 2005-11-24 | 1 | -0/+3 |
| | |||||
* | Backport of patch #1314396: prevent threading.Thread.join() from blocking if a | Brett Cannon | 2005-11-23 | 1 | -0/+4 |
| | | | | previous call raised an exception (e.g., calling it with an illegal argument). | ||||
* | Bug #869197: setgroups rejects long integer argument | Georg Brandl | 2005-11-22 | 1 | -0/+2 |
| |