summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Remove leftover test output file.Georg Brandl2006-10-291-29/+0
|
* Convert test_openpty to unittest.Georg Brandl2006-10-292-16/+18
|
* Convert test_MimeWriter to unittest.Georg Brandl2006-10-292-174/+185
|
* Completely convert test_httplib to unittest.Georg Brandl2006-10-292-103/+63
|
* Convert test_cgi to unittest.Georg Brandl2006-10-292-167/+135
|
* Convert test_cookie to unittest.Georg Brandl2006-10-292-73/+73
|
* Convert test_types to unittest.Georg Brandl2006-10-292-298/+270
|
* Convert test_nis to unittest.Georg Brandl2006-10-292-37/+37
|
* Convert test_poll to unittest.Georg Brandl2006-10-292-195/+140
|
* Convert test_mmap to unittest.Georg Brandl2006-10-292-276/+156
|
* Bug #1576657: when setting a KeyError for a tuple key, make sure thatGeorg Brandl2006-10-293-3/+29
| | | | the tuple isn't used as the "exception arguments tuple".
* Update comments, remove commented out code.Neal Norwitz2006-10-291-87/+31
| | | | | Move assembler structure next to assembler code to make it easier to move it to a separate file.
* Bug #1586773: extend hashlib docstring.Georg Brandl2006-10-291-1/+30
|
* Bug #1586613: fix zlib and bz2 codecs' incremental en/decoders.Georg Brandl2006-10-294-8/+55
|
* Fix the new EncodedFile test to work with big endian platforms.Georg Brandl2006-10-291-2/+2
|
* Test assert if __debug__ is true.Georg Brandl2006-10-291-4/+3
|
* Patch #1583880: fix tarfile's problems with long names and posix/Georg Brandl2006-10-292-88/+84
| | | | GNU modes.
* Bug #1357915: allow all sequence types for shell arguments inGeorg Brandl2006-10-291-0/+2
| | | | subprocess.
* Remove trailing comma.Georg Brandl2006-10-291-1/+1
|
* Bug #1586448: the compiler module now emits the same bytecode forGeorg Brandl2006-10-292-7/+9
| | | | | list comprehensions as the builtin compiler, using the LIST_APPEND opcode.
* Clean up a leftover from old listcomp generation code.Georg Brandl2006-10-291-7/+1
|
* Fix codecs.EncodedFile which did not use file_encoding in 2.5.0, andGeorg Brandl2006-10-293-4/+62
| | | | | fix all codecs file wrappers to work correctly with the "with" statement (bug #1586513).
* From SF 1557890, fix problem of using wrong type in example.Neal Norwitz2006-10-281-1/+1
| | | | Will backport.
* Fix test_modulefinder so it doesn't fail when run after test_distutils.Neal Norwitz2006-10-281-0/+1
|
* Don't inline Py_ADDRESS_IN_RANGE with gcc 4+ either.Neal Norwitz2006-10-281-1/+2
| | | | Will backport.
* Prevent crash if alloc of garbage fails. Found by Typo.pl.Neal Norwitz2006-10-281-0/+5
| | | | Will backport.
* Fix bug #1565514, SystemError not raised on too many nested blocks.Neal Norwitz2006-10-283-1/+37
| | | | | | | It seems like this should be a different error than SystemError, but I don't have any great ideas and SystemError was raised in 2.4 and earlier. Will backport.
* Fix crash in test on HP-UX. Apparently, it's not possible to delete a lock ifNeal Norwitz2006-10-281-0/+3
| | | | | | it's held (even by the current thread). Will backport.
* Fix warnings with HP's C compiler. It doesn't recognize that infiniteNeal Norwitz2006-10-282-0/+6
| | | | | | loops are, um, infinite. These conditions should not be able to happen. Will backport.
* Add some asserts. In sysmodule, I think these were to try to silenceNeal Norwitz2006-10-282-0/+5
| | | | | | | some warnings from Klokwork. They verify the assumptions of the format of svn version output. The assert in the thread module helped debug a problem on HP-UX.
* make test_grammar pass with python -OGeorg Brandl2006-10-281-2/+4
|
* Fix nth() itertool recipe.Georg Brandl2006-10-281-2/+2
|
* Convert test_opcodes to unittest.Georg Brandl2006-10-282-105/+108
|
* Convert test_math to unittest.Georg Brandl2006-10-282-229/+207
|
* Update outstanding bugs test file.Georg Brandl2006-10-281-10/+5
|
* 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
|