summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fix AST compiler bug #1501934: incorrect LOAD/STORE_GLOBAL generation.Neil Schemenauer2006-07-095-4/+20
|
* Whitespace normalization.Tim Peters2006-07-081-2/+2
|
* Add an additional test for bug #1519018.Georg Brandl2006-07-081-0/+2
|
* Fix SF bug #1519018: 'as' is now validated properly in import statementsNeal Norwitz2006-07-083-1/+18
|
* Fix RFC number.Georg Brandl2006-07-071-1/+1
|
* Restore rev 47014:Neal Norwitz2006-07-074-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öwis2006-07-062-4/+8
| | | | Also correct typo in Control.mapping.
* Test using all CJK encodings for the testcases which don't requireHye-Shik Chang2006-07-061-6/+26
| | | | specific encodings.
* Add a testcase for r47086 which fixed a bug in codec_getstreamcodec().Hye-Shik Chang2006-07-061-1/+9
|
* Document the correct return type of PyLong_AsUnsignedLongLongMask.Thomas Heller2006-07-061-1/+1
|
* ImportWarning is now silent by defaultAndrew M. Kuchling2006-07-061-12/+5
|
* Add NEWS entries for the ImportWarning change and documentation updateNick Coghlan2006-07-061-0/+5
|
* Cover ImportWarning, PendingDeprecationWarning and simplefilter() in the ↵Nick Coghlan2006-07-061-5/+33
| | | | warnings module docs
* Ignore ImportWarning by defaultNick Coghlan2006-07-061-0/+1
|
* Update the tutorial section on relative importsNick Coghlan2006-07-061-8/+25
|
* Revert the __module_name__ changes made in rev 47142. We'll revisit this in ↵Nick Coghlan2006-07-063-47/+26
| | | | Python 2.6
* added XMLParser alias for cElementTree compatibilityFredrik Lundh2006-07-061-1/+4
|
* NEWS entry for r47267: fixing configure's zlib probing.Thomas Wouters2006-07-061-0/+4
|
* This patch solves the problem Skip was seeing with zlib, this patch ensures thatRonald Oussoren2006-07-062-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 Heller2006-07-061-0/+6
|
* Document the Struture and Union constructors.Thomas Heller2006-07-061-0/+7
|
* Patch #1517790: It is now possible to use custom objects in the ctypesThomas Heller2006-07-063-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 theThomas Heller2006-07-061-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 Rigo2006-07-062-0/+67
| | | | returns a borrowed ref. Many of the calls are open to attack.
* Revert the change done in svn revision 47206:Thomas Heller2006-07-062-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öwis2006-07-062-1/+4
|
* Add sqlite3.dll to the DLLs component, not to the TkDLLs component.Martin v. Löwis2006-07-062-8/+11
| | | | Fixes #1517388.
* Add a NEWS entry for a recent pyexpat fixNeal Norwitz2006-07-061-0/+3
|
* - back out Expat change; the final fix to Expat will be differentFred Drake2006-07-062-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 changeNeal Norwitz2006-07-061-2/+4
| | | | contains only the changes related to leaking the copy variable.
* no need to elaborate "string".Georg Brandl2006-07-051-1/+1
|
* Patch #1517490: fix glitches in filter() docs.Georg Brandl2006-07-051-4/+4
|
* Fix bug in passing tuples to string.Template. All other values (with workingThomas Wouters2006-07-053-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. StructuresThomas Heller2006-07-051-2/+2
| | | | containing bitfields may have different layout on MSVC and MingW .
* Remove remaining references to OverflowWarning.Georg Brandl2006-07-052-2/+1
|
* Sync the darwin/x86 port libffi with the copy in PyObjC. This fixes a numberRonald Oussoren2006-07-042-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ónsson2006-07-033-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. Kuchling2006-07-031-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 assignmentAndrew M. Kuchling2006-07-031-1/+2
|
* Put method-wrappers into trashcan. Fixes #927248.Martin v. Löwis2006-07-033-1/+14
|
* Patch #825417: Fix timeout processing in expect,Martin v. Löwis2006-07-032-1/+18
| | | | read_until. Will backport to 2.4.
* Bug #1267547: Put proper recursive setup.py call into theMartin v. Löwis2006-07-032-3/+7
| | | | spec file generated by bdist_rpm.
* Bug #1417699: Reject locale-specific decimal point in float()Martin v. Löwis2006-07-034-3/+27
| | | | and atof().
* Document functions added in 2.3 and 2.5.Martin v. Löwis2006-07-031-4/+75
|
* Bug #1514693: Update turtle's heading when switching betweenMartin v. Löwis2006-07-032-2/+10
| | | | degrees and radians.
* Reimplement turtle.circle using a polyline, to allow correctMartin v. Löwis2006-07-032-48/+17
| | | | filling of arcs. Also fixes #1514693.
* Only setup canvas when it is first created.Martin v. Löwis2006-07-032-1/+4
| | | | Fixes #1514703
* Whitespace normalization.Tim Peters2006-07-031-1/+1
|
* Add a new function uses_seh() to the _ctypes extension module. ThisThomas Heller2006-07-032-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 Heller2006-07-032-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.