Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 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 |
| | |||||
* | - back out Expat change; the final fix to Expat will be different | Fred Drake | 2006-07-06 | 2 | -3/+31 |
| | | | | | - change the pyexpat wrapper to not be so sensitive to this detail of the Expat implementation (the ex-crasher test still passes) | ||||
* | Fix refleaks reported by Shane Hathaway in SF patch #1515361. This change | Neal Norwitz | 2006-07-06 | 1 | -2/+4 |
| | | | | contains only the changes related to leaking the copy variable. | ||||
* | no need to elaborate "string". | Georg Brandl | 2006-07-05 | 1 | -1/+1 |
| | |||||
* | Patch #1517490: fix glitches in filter() docs. | Georg Brandl | 2006-07-05 | 1 | -4/+4 |
| | |||||
* | Fix bug in passing tuples to string.Template. All other values (with working | Thomas Wouters | 2006-07-05 | 3 | -3/+14 |
| | | | | | | | | | | | | | | 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' | ||||
* | Fix the bitfield test when _ctypes is compiled with MingW. Structures | Thomas Heller | 2006-07-05 | 1 | -2/+2 |
| | | | | containing bitfields may have different layout on MSVC and MingW . | ||||
* | Remove remaining references to OverflowWarning. | Georg Brandl | 2006-07-05 | 2 | -2/+1 |
| | |||||
* | Sync the darwin/x86 port libffi with the copy in PyObjC. This fixes a number | Ronald Oussoren | 2006-07-04 | 2 | -84/+116 |
| | | | | | | | | of bugs in that port. The most annoying ones were due to some subtle differences between the document ABI and the actual implementation :-( (there are no python unittests that fail without this patch, but without it some of libffi's unittests fail). | ||||
* | Fix build problems with the platform SDK on windows. It is not sufficient ↵ | Kristján Valur Jónsson | 2006-07-03 | 3 | -5/+5 |
| | | | | to test for the C compiler version when determining if we have the secure CRT from microsoft. Must test with an undocumented macro, __STDC_SECURE_LIB__ too. | ||||
* | [Bug #1511911] Clarify description of optional arguments to sorted() | Andrew M. Kuchling | 2006-07-03 | 1 | -2/+24 |
| | | | | | by improving the xref to the section on lists, and by copying the explanations of the arguments (with a slight modification). | ||||
* | [Bug #1515932] Clarify description of slice assignment | Andrew M. Kuchling | 2006-07-03 | 1 | -1/+2 |
| | |||||
* | Put method-wrappers into trashcan. Fixes #927248. | Martin v. Löwis | 2006-07-03 | 3 | -1/+14 |
| | |||||
* | Patch #825417: Fix timeout processing in expect, | Martin v. Löwis | 2006-07-03 | 2 | -1/+18 |
| | | | | read_until. Will backport to 2.4. | ||||
* | Bug #1267547: Put proper recursive setup.py call into the | Martin v. Löwis | 2006-07-03 | 2 | -3/+7 |
| | | | | spec file generated by bdist_rpm. | ||||
* | Bug #1417699: Reject locale-specific decimal point in float() | Martin v. Löwis | 2006-07-03 | 4 | -3/+27 |
| | | | | and atof(). | ||||
* | Document functions added in 2.3 and 2.5. | Martin v. Löwis | 2006-07-03 | 1 | -4/+75 |
| | |||||
* | Bug #1514693: Update turtle's heading when switching between | Martin v. Löwis | 2006-07-03 | 2 | -2/+10 |
| | | | | degrees and radians. | ||||
* | Reimplement turtle.circle using a polyline, to allow correct | Martin v. Löwis | 2006-07-03 | 2 | -48/+17 |
| | | | | filling of arcs. Also fixes #1514693. | ||||
* | Only setup canvas when it is first created. | Martin v. Löwis | 2006-07-03 | 2 | -1/+4 |
| | | | | Fixes #1514703 | ||||
* | Whitespace normalization. | Tim Peters | 2006-07-03 | 1 | -1/+1 |
| | |||||
* | Add a new function uses_seh() to the _ctypes extension module. This | Thomas Heller | 2006-07-03 | 2 | -9/+19 |
| | | | | | | | | | | | | will return True if Windows Structured Exception handling (SEH) is used when calling functions, False otherwise. Currently, only MSVC supports SEH. Fix the test so that it doesn't crash when run with MingW compiled _ctypes. Note that two tests are still failing when mingw is used, I suspect structure layout differences and function calling conventions between MSVC and MingW. | ||||
* | Fixes so that _ctypes can be compiled with the MingW compiler. | Thomas Heller | 2006-07-03 | 2 | -6/+4 |
| | | | | | | | It seems that the definition of '__attribute__(x)' was responsible for the compiler ignoring the '__fastcall' attribute on the ffi_closure_SYSV function in libffi_msvc/ffi.c, took me quite some time to figure this out. | ||||
* | Don't run the doctests with Python 2.3 because it doesn't have the ELLIPSIS ↵ | Thomas Heller | 2006-07-03 | 1 | -4/+8 |
| | | | | flag. | ||||
* | Cleanup: Remove commented out code. | Thomas Heller | 2006-07-03 | 1 | -22/+1 |
| | |||||
* | Correct arithmetic in access on Win32. Fixes #1513646. | Martin v. Löwis | 2006-07-02 | 3 | -1/+18 |
| | |||||
* | The sqlite3 module did cut off data from the SQLite database at the first null | Gerhard Häring | 2006-07-02 | 4 | -5/+28 |
| | | | | character before sending it to a custom converter. This has been fixed now. | ||||
* | SF bug #1296433 (Expat bug #1515266): Unchecked calls to character data | Fred Drake | 2006-07-01 | 3 | -56/+23 |
| | | | | | | | | handler would cause a segfault. This merges in Expat's lib/xmlparse.c revisions 1.154 and 1.155, which fix this and a closely related problem (the later does not affect Python). Moved the crasher test to the tests for xml.parsers.expat. | ||||
* | Release all forwarded functions in .close. Fixes #1513223. | Martin v. Löwis | 2006-07-01 | 3 | -14/+34 |
| | |||||
* | Added duplicate call to fileConfig() to ensure that it cleans up after ↵ | Vinay Sajip | 2006-07-01 | 1 | -0/+2 |
| | | | | itself correctly. | ||||
* | Added entry for fileConfig() bugfix. | Vinay Sajip | 2006-07-01 | 1 | -4/+7 |
| | |||||
* | - consistency nit: always include "()" in \function and \method | Fred Drake | 2006-06-30 | 1 | -8/+8 |
| | | | | | (*should* be done by the presentation, but that requires changes all over) - avoid spreading the __name meme | ||||
* | Document decorator usage of property. | Georg Brandl | 2006-06-30 | 1 | -1/+16 |
| | |||||
* | Remove now-unused fidding with PY_FORMAT_SIZE_T. | Tim Peters | 2006-06-30 | 1 | -4/+0 |
| | |||||
* | Revert the use of PY_FORMAT_SIZE_T in PyErr_Format. | Thomas Heller | 2006-06-30 | 1 | -1/+5 |
| | |||||
* | Another problem reported by Coverity. Backport candidate. | Neal Norwitz | 2006-06-30 | 1 | -0/+2 |
| | |||||
* | Silence compiler warning | Neal Norwitz | 2006-06-30 | 1 | -1/+6 |
| | |||||
* | Whitespace normalization. | Tim Peters | 2006-06-30 | 2 | -5/+5 |
| | |||||
* | Fixed bug in fileConfig() which failed to clear logging._handlerList | Vinay Sajip | 2006-06-30 | 1 | -0/+1 |
| |