summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
Commit message (Collapse)AuthorAgeFilesLines
* Relocate the misplaced heading.v2.4.3Hye-Shik Chang2006-03-281-3/+3
|
* Ubuntu bug #29289: Fixed a bug that the gb18030 codec raisesHye-Shik Chang2006-03-281-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: BuiltinAnthony Baxter2006-03-281-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 changeAnthony Baxter2006-03-281-2/+5
|
* preparing for 2.4.3 finalAnthony Baxter2006-03-281-0/+11
|
* 2.4.3c1Anthony Baxter2006-03-231-1/+1
|
* Change SystemError into SyntaxError, when a Unicode stringMartin v. Löwis2006-03-221-0/+3
| | | | | containing an encoding declaration is compile()d. Fixes #1115379.
* Backport from trunk r42989:Hye-Shik Chang2006-03-131-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öwis2006-03-101-0/+2
|
* Return value off PyErr_Warn() for raising string exceptions was not beingBrett Cannon2006-02-271-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 Peters2006-02-271-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 Peters2006-02-271-8/+8
|
* Backport 41753:Neal Norwitz2006-02-211-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 whenGeorg Brandl2006-02-201-0/+3
| | | | INET_ADDRSTRLEN is not defined.
* Make clear that patch #1336582 wasn't a new feature.Georg Brandl2006-02-191-1/+1
|
* Patch #1337756: fileinput now accepts Unicode filenames.Georg Brandl2006-02-191-0/+2
|
* Patch #1373643: The chunk module can now read chunks larger thanGeorg Brandl2006-02-181-0/+3
| | | | two gigabytes.
* Bug #1430298: It is now possible to send a mail with an emptyGeorg Brandl2006-02-171-0/+3
| | | | return address using smtplib.
* Bug #1432260: better handle lambda functions' names in pydocGeorg Brandl2006-02-171-0/+3
|
* Patch #1432345: Make python compile on DragonFly.Martin v. Löwis2006-02-171-0/+2
|
* Patch #428494: Prefer linking against ncursesw over ncurses libraryMartin v. Löwis2006-02-111-0/+5
|
* Backport:Neal Norwitz2006-02-071-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 Norwitz2006-02-051-0/+3
| | | | | Patch #1407135, bug #1424041: mmap.mmap(-1, size, ...) can return anonymous memory again on Unix.
* Backport:Neal Norwitz2006-01-251-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 Brandl2006-01-201-2/+0
|
* Bug #1407902: Added support for sftp:// URIs to urlparse.Georg Brandl2006-01-201-0/+2
|
* Bug #1402224: Add warning to dl docs about crashes.Georg Brandl2006-01-201-0/+2
|
* Bug #1396471: Document that Windows' ftell() can return invalidGeorg Brandl2006-01-201-0/+3
| | | | values for text files with UNIX-style line endings.
* Bug #1371247: Update Windows LCIDs in locale.py.Georg Brandl2006-01-201-2/+4
|
* Fix typoNeal Norwitz2006-01-141-1/+1
|
* Backport:Neal Norwitz2006-01-141-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 paramtersGeorg Brandl2006-01-131-0/+3
| | | | any more.
* Bug #1403410: The warnings module now doesn't get confusedGeorg Brandl2006-01-131-0/+3
| | | | when it can't find out the module name it generates a warning for.
* Backport:Neal Norwitz2006-01-101-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 Norwitz2006-01-101-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 Norwitz2006-01-091-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 Norwitz2006-01-091-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öwis2006-01-081-0/+2
|
* Backport 38951:Neal Norwitz2006-01-051-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 problemsNeal Norwitz2006-01-051-0/+2
|
* Patch by Ori Avtalion to fix a minor display glitch in the RightArrow.Barry Warsaw2006-01-011-0/+5
| | | | I will port forward to 2.5.
* Use -xcode=pic32 for SunPro.Martin v. Löwis2005-12-301-0/+2
|
* [ 959576 ] Can't build Python on POSIX w/o $HOME (backport)Georg Brandl2005-12-271-0/+3
|
* Backport: Patch #1117398: fix cookielib LoadErrorNeal Norwitz2005-12-231-0/+4
|
* Bug #1379994: Fix *unicode_escape codecs to encode r'\' as r'\\'Hye-Shik Chang2005-12-171-0/+3
| | | | just like string codecs.
* Bug #1290333: Added a workaround for cjkcodecs' _codecs_cn moduleHye-Shik Chang2005-12-121-0/+3
| | | | build problem on AIX.
* backport: bug #1365984, urllib and data: URLs^^Georg Brandl2005-11-261-0/+2
|
* bug #1281408: make Py_BuildValue work with unsigned longs and long longsGeorg Brandl2005-11-241-0/+3
|
* Backport of patch #1314396: prevent threading.Thread.join() from blocking if aBrett Cannon2005-11-231-0/+4
| | | | previous call raised an exception (e.g., calling it with an illegal argument).
* Bug #869197: setgroups rejects long integer argumentGeorg Brandl2005-11-221-0/+2
|