| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | #1494314: Fix a regression with high-numbered sockets in 2.4.3. This | Anthony Baxter | 2006-07-11 | 1 | -0/+4 |
| | | | | | | means that select() on sockets > FD_SETSIZE (typically 1024) work again. The patch makes sockets use poll() internally where available. | ||||
| * | Patch #1519566: Remove unused _tofill member. | Martin v. Löwis | 2006-07-10 | 1 | -0/+2 |
| | | | | | | Make begin_fill idempotent. Update demo2 to demonstrate filling of concave shapes. | ||||
| * | After approval from Anthony, merge the tim-current_frames | Tim Peters | 2006-07-10 | 1 | -2/+9 |
| | | | | | | | branch into the trunk. This adds a new sys._current_frames() function, which returns a dict mapping thread id to topmost thread stack frame. | ||||
| * | Moved the ctypes news entries from the 'Library' section into the | Thomas Heller | 2006-07-10 | 1 | -16/+16 |
| | | | | | | | | 'Extension Modules' section where they belong, probably. This destroyes the original order of the news entries, don't know if that is important or not. | ||||
| * | Assigning None to pointer type structure fields possible overwrote | Thomas Heller | 2006-07-10 | 1 | -0/+3 |
| | | | | | wrong fields. | ||||
| * | Fixed a segfault when ctypes.wintypes were imported on | Thomas Heller | 2006-07-10 | 1 | -0/+3 |
| | | | | | non-Windows machines. | ||||
| * | Fix bug #1518190: accept any integer or long value in the | Thomas Heller | 2006-07-10 | 1 | -0/+3 |
| | | | | | ctypes.c_void_p constructor. | ||||
| * | preparing for 2.5b2 | Anthony Baxter | 2006-07-10 | 2 | -2/+2 |
| | | |||||
| * | Introduce DISTUTILS_USE_SDK as a flag to determine whether the | Martin v. Löwis | 2006-07-10 | 1 | -0/+4 |
| | | | | | SDK environment should be used. Fixes #1508010. | ||||
| * | Patch #1504046: Add documentation for xml.etree. | Neal Norwitz | 2006-07-10 | 1 | -0/+1 |
| | | | | | | | /F wrote the text docs, Englebert Gruber massaged it to latex and I did some more massaging to try and improve the consistency and fix some name mismatches between the declaration and text. | ||||
| * | Patch #1516912: improve Modules support for OpenVMS. | Neal Norwitz | 2006-07-10 | 1 | -0/+2 |
| | | |||||
| * | Bug #1512814, Fix incorrect lineno's when code at module scope | Neal Norwitz | 2006-07-10 | 1 | -0/+3 |
| | | | | | started after line 256. | ||||
| * | On 64 bit systems, int literals that use less than 64 bits are now ints | Neal Norwitz | 2006-07-09 | 1 | -0/+3 |
| | | | | | rather than longs. This also fixes the test for eval(-sys.maxint - 1). | ||||
| * | Fix SF bug 1441486: bad unary minus folding in compiler. | Neil Schemenauer | 2006-07-09 | 1 | -0/+3 |
| | | |||||
| * | Fix AST compiler bug #1501934: incorrect LOAD/STORE_GLOBAL generation. | Neil Schemenauer | 2006-07-09 | 1 | -0/+3 |
| | | |||||
| * | Fix SF bug #1519018: 'as' is now validated properly in import statements | Neal Norwitz | 2006-07-08 | 1 | -0/+2 |
| | | |||||
| * | Properly generate logical file ids. Fixes #1515998. | Martin v. Löwis | 2006-07-06 | 1 | -0/+2 |
| | | | | | Also correct typo in Control.mapping. | ||||
| * | Add NEWS entries for the ImportWarning change and documentation update | Nick Coghlan | 2006-07-06 | 1 | -0/+5 |
| | | |||||
| * | NEWS entry for r47267: fixing configure's zlib probing. | Thomas Wouters | 2006-07-06 | 1 | -0/+4 |
| | | |||||
| * | Patch #1517790: It is now possible to use custom objects in the ctypes | Thomas Heller | 2006-07-06 | 1 | -0/+4 |
| | | | | | | | foreign function argtypes sequence as long as they provide a from_param method, no longer is it required that the object is a ctypes type. | ||||
| * | Properly quote compileall and Lib paths in case TARGETDIR has a space. | Martin v. Löwis | 2006-07-06 | 1 | -0/+3 |
| | | |||||
| * | Add sqlite3.dll to the DLLs component, not to the TkDLLs component. | Martin v. Löwis | 2006-07-06 | 1 | -0/+3 |
| | | | | | Fixes #1517388. | ||||
| * | Add a NEWS entry for a recent pyexpat fix | Neal Norwitz | 2006-07-06 | 1 | -0/+3 |
| | | |||||
| * | Fix bug in passing tuples to string.Template. All other values (with working | Thomas Wouters | 2006-07-05 | 1 | -0/+4 |
| | | | | | | | | | | | | | | | str() or repr()) would work, just not multi-value tuples. Probably not a backport candidate, since it changes the behaviour of passing a single-element tuple: >>> string.Template("$foo").substitute(dict(foo=(1,))) '(1,)' versus '1' | ||||
| * | Remove remaining references to OverflowWarning. | Georg Brandl | 2006-07-05 | 2 | -2/+1 |
| | | |||||
| * | Put method-wrappers into trashcan. Fixes #927248. | Martin v. Löwis | 2006-07-03 | 1 | -0/+3 |
| | | |||||
| * | Patch #825417: Fix timeout processing in expect, | Martin v. Löwis | 2006-07-03 | 1 | -0/+3 |
| | | | | | read_until. Will backport to 2.4. | ||||
| * | Bug #1267547: Put proper recursive setup.py call into the | Martin v. Löwis | 2006-07-03 | 1 | -0/+3 |
| | | | | | spec file generated by bdist_rpm. | ||||
| * | Bug #1417699: Reject locale-specific decimal point in float() | Martin v. Löwis | 2006-07-03 | 1 | -0/+3 |
| | | | | | and atof(). | ||||
| * | Bug #1514693: Update turtle's heading when switching between | Martin v. Löwis | 2006-07-03 | 1 | -1/+4 |
| | | | | | degrees and radians. | ||||
| * | Reimplement turtle.circle using a polyline, to allow correct | Martin v. Löwis | 2006-07-03 | 1 | -0/+3 |
| | | | | | filling of arcs. Also fixes #1514693. | ||||
| * | Only setup canvas when it is first created. | Martin v. Löwis | 2006-07-03 | 1 | -0/+3 |
| | | | | | Fixes #1514703 | ||||
| * | Correct arithmetic in access on Win32. Fixes #1513646. | Martin v. Löwis | 2006-07-02 | 1 | -0/+3 |
| | | |||||
| * | The sqlite3 module did cut off data from the SQLite database at the first null | Gerhard Häring | 2006-07-02 | 1 | -0/+4 |
| | | | | | character before sending it to a custom converter. This has been fixed now. | ||||
| * | Release all forwarded functions in .close. Fixes #1513223. | Martin v. Löwis | 2006-07-01 | 1 | -0/+3 |
| | | |||||
| * | Added entry for fileConfig() bugfix. | Vinay Sajip | 2006-07-01 | 1 | -4/+7 |
| | | |||||
| * | Patch #1509163: MS Toolkit Compiler no longer available | Martin v. Löwis | 2006-06-29 | 1 | -0/+5 |
| | | |||||
| * | Protect the thread api calls in the _ctypes extension module within | Thomas Heller | 2006-06-29 | 1 | -0/+3 |
| | | | | | #ifdef WITH_THREADS/#endif blocks. Found by Sam Rushing. | ||||
| * | Add new utility function, reap_children(), to test_support. This should | Neal Norwitz | 2006-06-29 | 1 | -0/+6 |
| | | | | | | | | | | | be called at the end of each test that spawns children (perhaps it should be called from regrtest instead?). This will hopefully prevent some of the unexplained failures in the buildbots (hppa and alpha) during tests that spawn children. The problems were not reproducible. There were many zombies that remained at the end of several tests. In the worst case, this shouldn't cause any more problems, though it may not help either. Time will tell. | ||||
| * | document recent bugfixes in sgmllib | Fred Drake | 2006-06-29 | 1 | -0/+6 |
| | | |||||
| * | Mention the expat upgrade and pyexpat fix I put in 2.5b1. | Trent Mick | 2006-06-28 | 1 | -0/+4 |
| | | |||||
| * | Fix end_fill(). | Georg Brandl | 2006-06-28 | 1 | -0/+2 |
| | | |||||
| * | Fix bug #1512695: cPickle.loads could crash if it was interrupted with | Neal Norwitz | 2006-06-28 | 1 | -0/+6 |
| | | | | | | | a KeyboardInterrupt since PyTuple_Pack was passed a NULL. Will backport. | ||||
| * | Verify buildbot picks up these changes (really needs testing after last ↵ | Neal Norwitz | 2006-06-27 | 1 | -1/+1 |
| | | | | | change to Makefile.pre.in) | ||||
| * | Try again: test unimportant change to verify buildbot does not try to build | Neal Norwitz | 2006-06-27 | 1 | -0/+1 |
| | | |||||
| * | Test unimportant change to verify buildbot does not try to build | Neal Norwitz | 2006-06-27 | 1 | -1/+0 |
| | | |||||
| * | Fix SF bug #1513032, 'make install' failure on FreeBSD 5.3. | Neal Norwitz | 2006-06-27 | 1 | -0/+5 |
| | | | | | No need to install lib-old, it's empty in 2.5. | ||||
| * | Instead of doing a make test, run the regression tests out of the installed | Neal Norwitz | 2006-06-27 | 1 | -5/+17 |
| | | | | | | | copy. This will hopefully catch problems where directories are added under Lib/ but not to Makefile.pre.in. This breaks out the 2 runs of the test suite with and without -O which is also nicer. | ||||
| * | Ignore some more warnings in the dynamic linker on an older gentoo | Neal Norwitz | 2006-06-27 | 1 | -0/+9 |
| | | |||||
| * | Bug #1511381: codec_getstreamcodec() in codec.c is corrected to | Hye-Shik Chang | 2006-06-23 | 1 | -0/+3 |
| | | | | | | | omit a default "error" argument for NULL pointer. This allows the parser to take a codec from cjkcodecs again. (Reported by Taewook Kang and reviewed by Walter Doerwald) | ||||
