summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Collapse)AuthorAgeFilesLines
* Preparing for 2.5 final.v2.5Anthony Baxter2006-09-182-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.5c2Anthony Baxter2006-09-111-7/+0
|
* preparing for 2.5c2Anthony Baxter2006-09-111-1/+1
|
* Building with HP's cc on HP-UX turned up a couple of problems.Neal Norwitz2006-09-111-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 introducedNeal Norwitz2006-09-111-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 Norwitz2006-09-111-1/+5
|
* Remove __unicode__ method so that ``unicode(BaseException)`` succeeds.Brett Cannon2006-09-091-0/+3
| | | | Fixes bug #1551432.
* Backport inspect.py fix from rev 51803Nick Coghlan2006-09-081-0/+3
|
* Backport from trunk r51737:Hye-Shik Chang2006-09-071-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 Niemeyer2006-09-061-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é Lemburg2006-09-061-0/+7
|
* Fix missing import of the types module in logging.config.Georg Brandl2006-09-061-0/+2
| | | | (backport from rev. 51785)
* Bug #1542051: Exceptions now correctly call PyObject_GC_UnTrack.Georg Brandl2006-09-061-0/+4
| | | | | | Also make sure that every exception class has __module__ set to 'exceptions'. (backport)
* Bug #1550983: emit better error messages for erroneous relativeGeorg Brandl2006-09-061-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 versionGeorg Brandl2006-09-061-0/+3
| | | | | of os.urandom(). (backport from rev. 51762)
* Revert 51759 because it broke all the buildbotsNeal Norwitz2006-09-061-2/+0
|
* Backporting fix for bug #1531862, committed in 51758, into 2.5,Gustavo Niemeyer2006-09-061-0/+2
| | | | making subprocess not close standard file descriptors.
* Fixing an improperly escaped grep in .spec file, pointed out by Neal Norwitz.Sean Reifscheider2006-09-051-1/+1
|
* Add another NEWS entry for a fix already in 2.5c1Neal Norwitz2006-09-051-0/+2
|
* Add some NEWS for fixes already in 2.5c1Neal Norwitz2006-09-051-0/+4
|
* Bug #1520864 (again): unpacking singleton tuples in list comprehensions andNeal Norwitz2006-09-051-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 Norwitz2006-09-051-0/+2
|
* Backport fix from 51683.Neal Norwitz2006-09-051-0/+2
|
* Backport fix for SF bug #1550714, itertools.tee raises SystemErrorNeal Norwitz2006-09-051-0/+6
|
* Fix str.rpartition(sep) when sep is not found in str.Neal Norwitz2006-09-051-0/+3
| | | | Partially from SF patch #1551339, but also taken from head.
* This was found by Guido AFAIK on p3yk (sic) branch.Neal Norwitz2006-09-051-0/+7
|
* Fix SF bug #1546288, crash in dict_equalNeal Norwitz2006-09-051-1/+10
|
* i_divmod(): As discussed on Python-Dev, changed the overflowTim Peters2006-09-051-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 Norwitz2006-09-051-15/+25
|
* NEWS entry for decimal module changesNick Coghlan2006-09-031-0/+3
|
* Patch #1545507: Exclude ctypes package in Win64 MSI file.Martin v. Löwis2006-08-251-0/+2
|
* - Patch #1541585: fix buffer overrun when performing repr() onNeal Norwitz2006-08-212-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 Norwitz2006-08-211-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 Brandl2006-08-201-2/+2
| | | | (backport from rev. 51416)
* SF #1542693: Remove semi-colon at end of PyImport_ImportModuleEx macroNeal Norwitz2006-08-191-4/+7
|
* Bug #1541682: Fix example in the "Refcount details" API docs.Georg Brandl2006-08-181-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 identifiersMartin v. Löwis2006-08-181-0/+6
| | | | on systems with low clock resolution.
* Invoke debug mk1mf.pl after running Configure.Martin v. Löwis2006-08-171-0/+10
|
* Fix a bug in the ``compiler`` package that caused invalid code to beNeil Schemenauer2006-08-161-0/+3
| | | | generated for generator expressions.
* Grammar fixAndrew M. Kuchling2006-08-161-2/+2
|
* Add NEWS item mentioning the reverted distutils version number patch.Marc-André Lemburg2006-08-161-0/+5
|
* Remove the special casing of Py_None when converting the return valueThomas Heller2006-08-161-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 fixesAndrew M. Kuchling2006-08-161-11/+11
|
* The __repr__ method of a NULL py_object does no longer raise anThomas Heller2006-08-161-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 51307Anthony Baxter2006-08-161-0/+5
|
* Build _hashlib on Windows. Build OpenSSL with masm assembler code.Martin v. Löwis2006-08-161-0/+3
| | | | Fixes #1535502.
* Patch #1540892: site.py Quitter() class attempts to close sys.stdinKurt B. Kaiser2006-08-161-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.5c1Anthony Baxter2006-08-162-2/+2
|
* Fix the test for SocketServer so it should pass on cygwin and not failNeal Norwitz2006-08-151-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 Norwitz2006-08-151-0/+4
| | | | Now we're even. :-)