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 | 3 | -17/+76 |
| | | | | | 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 | 3 | -13/+28 |
| | | | | | Make begin_fill idempotent. Update demo2 to demonstrate filling of concave shapes. | ||||
* | Whitespace normalization. | Tim Peters | 2006-07-10 | 1 | -1/+1 |
| | |||||
* | After approval from Anthony, merge the tim-current_frames | Tim Peters | 2006-07-10 | 6 | -11/+166 |
| | | | | | | branch into the trunk. This adds a new sys._current_frames() function, which returns a dict mapping thread id to topmost thread stack frame. | ||||
* | Make it possible to run test_subprocess.py with Python 2.2, which lacks ↵ | Peter Astrand | 2006-07-10 | 1 | -3/+6 |
| | | | | test_support.reap_children(). | ||||
* | Fix SF#1457312: bad socket error handling in distutils "upload" command. | Phillip J. Eby | 2006-07-10 | 1 | -1/+1 |
| | |||||
* | Fix SF#1516184 and add a test to prevent regression. | Phillip J. Eby | 2006-07-10 | 2 | -12/+19 |
| | |||||
* | 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 | 3 | -1/+14 |
| | | | | wrong fields. | ||||
* | Fixed a segfault when ctypes.wintypes were imported on | Thomas Heller | 2006-07-10 | 2 | -2/+12 |
| | | | | non-Windows machines. | ||||
* | Fix bug #1518190: accept any integer or long value in the | Thomas Heller | 2006-07-10 | 3 | -8/+39 |
| | | | | ctypes.c_void_p constructor. | ||||
* | preparing for 2.5b2 | Anthony Baxter | 2006-07-10 | 7 | -7/+12 |
| | |||||
* | Add svn:ignore. | Martin v. Löwis | 2006-07-10 | 0 | -0/+0 |
| | |||||
* | Change error message to indicate that VS2003 is necessary to build extension ↵ | Martin v. Löwis | 2006-07-10 | 1 | -1/+1 |
| | | | | modules, not the .NET SDK. | ||||
* | Introduce DISTUTILS_USE_SDK as a flag to determine whether the | Martin v. Löwis | 2006-07-10 | 3 | -4/+19 |
| | | | | SDK environment should be used. Fixes #1508010. | ||||
* | Patch #1504046: Add documentation for xml.etree. | Neal Norwitz | 2006-07-10 | 4 | -0/+370 |
| | | | | | | /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 | 9 | -63/+154 |
| | |||||
* | Part of SF patch #1484695. This removes dead code. The chksum was | Neal Norwitz | 2006-07-10 | 1 | -7/+0 |
| | | | | | | already verified in .frombuf() on the lines above. If there was a problem an exception is raised, so there was no way this condition could have been true. | ||||
* | Fix doco. Backport candidate. | Neal Norwitz | 2006-07-10 | 1 | -1/+1 |
| | |||||
* | Bug #1512814, Fix incorrect lineno's when code at module scope | Neal Norwitz | 2006-07-10 | 3 | -1/+22 |
| | | | | started after line 256. | ||||
* | On 64 bit systems, int literals that use less than 64 bits are now ints | Neal Norwitz | 2006-07-09 | 3 | -0/+29 |
| | | | | 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 | 3 | -20/+60 |
| | |||||
* | Fix AST compiler bug #1501934: incorrect LOAD/STORE_GLOBAL generation. | Neil Schemenauer | 2006-07-09 | 5 | -4/+20 |
| | |||||
* | Whitespace normalization. | Tim Peters | 2006-07-08 | 1 | -2/+2 |
| | |||||
* | Add an additional test for bug #1519018. | Georg Brandl | 2006-07-08 | 1 | -0/+2 |
| | |||||
* | Fix SF bug #1519018: 'as' is now validated properly in import statements | Neal Norwitz | 2006-07-08 | 3 | -1/+18 |
| | |||||
* | Fix RFC number. | Georg Brandl | 2006-07-07 | 1 | -1/+1 |
| | |||||
* | Restore rev 47014: | Neal Norwitz | 2006-07-07 | 4 | -5/+32 |
| | | | | | | | | | | | | | | | | The hppa ubuntu box sometimes hangs forever in these tests. My guess is that the wait is failing for some reason. Use WNOHANG, so we won't wait until the buildbot kills the test suite. I haven't been able to reproduce the failure, so I'm not sure if this will help or not. Hopefully, this change will cause the test to fail, rather than hang. That will be better since we will get the rest of the test results. It may also help us debug the real problem. *** The reason this originally failed was because there were many zombie children outstanding before rev 47158 cleaned them up. There are still hangs in test_subprocess that need to be addressed, but that will take more work. This should close some holes. | ||||
* | Properly generate logical file ids. Fixes #1515998. | Martin v. Löwis | 2006-07-06 | 2 | -4/+8 |
| | | | | Also correct typo in Control.mapping. | ||||
* | Test using all CJK encodings for the testcases which don't require | Hye-Shik Chang | 2006-07-06 | 1 | -6/+26 |
| | | | | specific encodings. | ||||
* | Add a testcase for r47086 which fixed a bug in codec_getstreamcodec(). | Hye-Shik Chang | 2006-07-06 | 1 | -1/+9 |
| | |||||
* | Document the correct return type of PyLong_AsUnsignedLongLongMask. | Thomas Heller | 2006-07-06 | 1 | -1/+1 |
| | |||||
* | ImportWarning is now silent by default | Andrew M. Kuchling | 2006-07-06 | 1 | -12/+5 |
| | |||||
* | Add NEWS entries for the ImportWarning change and documentation update | Nick Coghlan | 2006-07-06 | 1 | -0/+5 |
| | |||||
* | Cover ImportWarning, PendingDeprecationWarning and simplefilter() in the ↵ | Nick Coghlan | 2006-07-06 | 1 | -5/+33 |
| | | | | warnings module docs | ||||
* | Ignore ImportWarning by default | Nick Coghlan | 2006-07-06 | 1 | -0/+1 |
| | |||||
* | Update the tutorial section on relative imports | Nick Coghlan | 2006-07-06 | 1 | -8/+25 |
| | |||||
* | Revert the __module_name__ changes made in rev 47142. We'll revisit this in ↵ | Nick Coghlan | 2006-07-06 | 3 | -47/+26 |
| | | | | Python 2.6 | ||||
* | added XMLParser alias for cElementTree compatibility | Fredrik Lundh | 2006-07-06 | 1 | -1/+4 |
| | |||||
* | NEWS entry for r47267: fixing configure's zlib probing. | Thomas Wouters | 2006-07-06 | 1 | -0/+4 |
| | |||||
* | This patch solves the problem Skip was seeing with zlib, this patch ensures that | Ronald Oussoren | 2006-07-06 | 2 | -4/+46 |
| | | | | | | | | configure uses similar compiler flags as setup.py when doing the zlib test. Without this patch configure would use the first shared library on the linker path, with this patch it uses the first shared or static library on that path just like setup.py. | ||||
* | Document the changes in svn revision 47263, from patch #1517790. | Thomas Heller | 2006-07-06 | 1 | -0/+6 |
| | |||||
* | Document the Struture and Union constructors. | Thomas Heller | 2006-07-06 | 1 | -0/+7 |
| | |||||
* | Patch #1517790: It is now possible to use custom objects in the ctypes | Thomas Heller | 2006-07-06 | 3 | -3/+41 |
| | | | | | | 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. | ||||
* | The test that calls a function with invalid arguments and catches the | Thomas Heller | 2006-07-06 | 1 | -9/+5 |
| | | | | resulting Windows access violation will not be run by default. | ||||
* | A couple of examples about how to attack the fact that _PyType_Lookup() | Armin Rigo | 2006-07-06 | 2 | -0/+67 |
| | | | | returns a borrowed ref. Many of the calls are open to attack. | ||||
* | Revert the change done in svn revision 47206: | Thomas Heller | 2006-07-06 | 2 | -19/+9 |
| | | | | | | Add a new function uses_seh() to the _ctypes extension module. This will return True if Windows Structured Exception handling (SEH) is used when calling functions, False otherwise. | ||||
* | Properly quote compileall and Lib paths in case TARGETDIR has a space. | Martin v. Löwis | 2006-07-06 | 2 | -1/+4 |
| | |||||
* | Add sqlite3.dll to the DLLs component, not to the TkDLLs component. | Martin v. Löwis | 2006-07-06 | 2 | -8/+11 |
| | | | | Fixes #1517388. | ||||
* | Add a NEWS entry for a recent pyexpat fix | Neal Norwitz | 2006-07-06 | 1 | -0/+3 |
| |