summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Convert test_global, test_scope and test_grammar to unittest.Georg Brandl2006-10-288-1288/+1263
| | | | | I tried to enclose all tests which must be run at the toplevel (instead of inside a method) in exec statements.
* Port test_bufio to unittest.Walter Dörwald2006-10-281-55/+61
|
* Patch #1552024: add decorator support to unparse.py demo script.Georg Brandl2006-10-272-2/+8
|
* Modulefinder now handles absolute and relative imports, includingThomas Heller2006-10-273-37/+377
| | | | | | tests. Will backport to release25-maint.
* WindowsError.str should display the windows error code,Thomas Heller2006-10-273-7/+23
| | | | | | | not the posix error code; with test. Fixes #1576174. Will backport to release25-maint.
* [Patch #1503717] Tiny patch from Chris AtLee to stop a lengthy line from ↵Andrew M. Kuchling2006-10-271-1/+1
| | | | being printed
* Check db_setup_debug for a few print statements; change sqlite_setup_debug ↵Andrew M. Kuchling2006-10-271-5/+8
| | | | to False
* [Patch #1574068 by Scott Dial] urllib and urllib2 were usingAndrew M. Kuchling2006-10-272-6/+6
| | | | | | base64.encodestring() for encoding authentication data. encodestring() can include newlines for very long input, which produced broken HTTP headers.
* Clarify docstringAndrew M. Kuchling2006-10-271-1/+1
|
* [Bug #1575506] The _singlefileMailbox class was using the wrong file object ↵Andrew M. Kuchling2006-10-272-1/+17
| | | | in its flush() method, causing an error
* [Bug #1576241] Let functools.wraps work with built-in functionsAndrew M. Kuchling2006-10-272-1/+8
|
* Point users to the subprocess module in the docs for os.system, os.spawn*, ↵Andrew M. Kuchling2006-10-274-9/+38
| | | | os.popen2, and the popen2 and commands modules
* [Bug #1542016] Report PCALL_POP value. This makes the return value of ↵Andrew M. Kuchling2006-10-271-2/+2
| | | | | | | sys.callstats() match its docstring. Backport candidate. Though it's an API change, this is a pretty obscure portion of the API.
* [Bug #1562583] Mention the set_reuse_addr() methodAndrew M. Kuchling2006-10-271-3/+5
|
* [Bug #1583946] Reword description of server and issuerAndrew M. Kuchling2006-10-271-5/+6
|
* [Bug #1585690] Note that line_num was added in Python 2.5Andrew M. Kuchling2006-10-271-0/+1
|
* Some wording changes and markup fixesAndrew M. Kuchling2006-10-271-6/+6
|
* Add itemAndrew M. Kuchling2006-10-271-1/+4
|
* Set svn:keywords propertyAndrew M. Kuchling2006-10-271-1/+1
|
* Patch #1567274: Support SMTP over TLS.Martin v. Löwis2006-10-274-5/+49
|
* Get DBL_MAX from float.h not values.h. Will backport.Martin v. Löwis2006-10-274-10/+4
|
* Check for values.h. Will backport.Martin v. Löwis2006-10-274-3/+9
|
* Patch #1549049: Rewrite type conversion in structmember.Martin v. Löwis2006-10-275-61/+296
| | | | Fixes #1545696 and #1566140. Will backport to 2.5.
* Typo fixAndrew M. Kuchling2006-10-261-1/+1
|
* [Bug #1579796] Wrong syntax for PyDateTime_IMPORT in documentation. ↵Andrew M. Kuchling2006-10-261-4/+4
| | | | Reported by David Faure.
* Patch [ 1583506 ] tarfile.py: 100-char filenames are truncatedGeorg Brandl2006-10-242-1/+28
|
* Remove passwd.adjunct.byname from list of mapsMartin v. Löwis2006-10-221-0/+7
| | | | for test_nis. Will backport to 2.5.
* - Patch #1560695: Add .note.GNU-stack to ctypes' sysv.S so thatMartin v. Löwis2006-10-222-0/+7
| | | | | ctypes isn't considered as requiring executable stacks. Will backport to 2.5.
* Patch #1580872: Remove duplicate declaration of PyCallable_Check.Martin v. Löwis2006-10-221-1/+2
| | | | Will backport to 2.5.
* Patch #1580674: with this patch os.readlink uses the filesystem encoding toRonald Oussoren2006-10-222-2/+40
| | | | decode unicode objects and returns an unicode object when the argument is one.
* Port test___future__ to unittest.Walter Dörwald2006-10-221-52/+56
|
* [Bug #1576348] Fix typo in exampleAndrew M. Kuchling2006-10-191-1/+1
|
* Restore CFLAGS after checking for __attribute__Martin v. Löwis2006-10-192-1/+3
|
* Fix various minor errors in passing arguments toMartin v. Löwis2006-10-194-16/+27
| | | | PyArg_ParseTuple.
* Add check for the PyArg_ParseTuple format, and declareMartin v. Löwis2006-10-196-2/+96
| | | | it if it is supported.
* Add missing svn:eol-style to text files.Tim Peters2006-10-182-339/+339
|
* Whitespace normalization.Tim Peters2006-10-183-4/+4
|
* newIobject(): repaired incorrect cast to quiet MSVC warning.Tim Peters2006-10-181-1/+1
|
* ctypes callback functions only support 'fundamental' result types.Thomas Heller2006-10-173-2/+22
| | | | | | | | Check this and raise an error when something else is used - before this change ctypes would hang or crash when such a callback was called. This is a partial fix for #1574584. Will backport to release25-maint.
* Forward-port r52358:Martin v. Löwis2006-10-173-36/+41
| | | | | - Bug #1578513: Cross compilation was broken by a change to configure. Repair so that it's back to how it was in 2.4.3.
* Remove obsolete file. Will backport.Martin v. Löwis2006-10-171-0/+0
|
* Patch #1457736: Update VC6 to use current PCbuild settings.Martin v. Löwis2006-10-1711-390/+278
| | | | Will backport to 2.5.
* Fix turtle so that you can launch the demo2 function on its own instead of onlyBrett Cannon2006-10-162-1/+5
| | | | when the module is launched as a script.
* Mention the bdist_msi module. Will backport to 2.5.Martin v. Löwis2006-10-151-0/+5
|
* Remove binary property, set eol-style to CRLF instead.Martin v. Löwis2006-10-150-0/+0
|
* Drop binary property on dsp files, set eol-styleMartin v. Löwis2006-10-150-0/+0
| | | | to CRLF instead.
* Set the eol-style for project files to "CRLF".Martin v. Löwis2006-10-153-424/+424
|
* Round to int, because some systems support sub-second time stamps in stat, ↵Martin v. Löwis2006-10-151-2/+4
| | | | | | but not in utime. Also be consistent with modifying only mtime, not atime.
* Bug #1567666: Emulate GetFileAttributesExA for Win95.Martin v. Löwis2006-10-152-2/+104
| | | | Will backport to 2.5.
* Loosen the test for equal time stamps.Martin v. Löwis2006-10-151-1/+1
|