summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Collapse)AuthorAgeFilesLines
* In Pdb, stop assigning values to __builtin__._ which interferes with the one ↵Georg Brandl2009-04-011-0/+9
| | | | commonly installed by gettext.
* Add tests checking the CSV module's ability to handleR. David Murray2009-04-011-0/+18
| | | | embedded newlines in quoted field values.
* add seek constants to __all__Benjamin Peterson2009-04-011-1/+2
|
* Revert accidental checkin.Georg Brandl2009-04-011-6/+0
|
* Add NEWS item.Georg Brandl2009-04-011-0/+6
|
* #4572: add SEEK_* values as constants in io.py.Georg Brandl2009-04-011-0/+5
|
* Fix for issue5040. Adding test for Content-LengthSenthil Kumaran2009-04-012-1/+29
|
* bounds check arguments to mmap.move(). All of them. Really.Jack Diederich2009-04-011-7/+14
| | | | fixes crasher on OS X 10.5
* test_warnings ironically had a single test that was not protecting the warningsBrett Cannon2009-04-011-8/+8
| | | | filter and was resetting it.
* test_logging was blindly clearing the warnings filter. This causedBrett Cannon2009-04-011-22/+24
| | | | | PendingDeprecationWarnings to be spewed all over by unittest.failIf*(). Fix moves over to using warnings.catch_warning to protect the warnings filter.
* Issue #5647: MutableSet.__iand__() no longer mutates self during iteration.Raymond Hettinger2009-04-012-4/+28
|
* _warnings was importing itself to get an attribute. That's bad if warnings getsBrett Cannon2009-04-011-0/+35
| | | | | | called in a thread that was spawned by an import itself. Last part to close #1665206.
* #5655: fix docstring oversight.Georg Brandl2009-04-011-1/+1
|
* The cgitb module had imports in its functions. This can cause deadlock with theBrett Cannon2009-04-011-14/+11
| | | | | | import lock if called from within a thread that was triggered by an import. Partially fixes issue #1665206.
* Fix test_xmlrpc and make the CGI handler work with no CONTENT_LENGTH.Georg Brandl2009-04-012-2/+6
|
* #5631: add upload to list of possible commands, which is presented in ↵Georg Brandl2009-04-011-0/+2
| | | | --help-commands.
* The SimpleXMLRPCServer's CGI handler now runs like a pony.Georg Brandl2009-04-011-1/+5
|
* Fix multiprocessing.event to match the new threading.Event APIJesse Noller2009-04-012-7/+14
|
* Fix issue 2522. locale.format now checks that it is passedR. David Murray2009-04-012-8/+29
| | | | | exactly one pattern, which avoids mysterious errors where it had seemed to fail to do localization.
* Fix for failing asyncore tests.Josiah Carlson2009-04-012-2/+3
|
* Issue #5635: Fix running test_sys with tracing enabled.Georg Brandl2009-04-011-0/+5
|
* #5228: add pickle support to functools.partialJack Diederich2009-03-311-1/+14
|
* Fix Windows test skip error revealed by buildbot. Also a comment spellingR. David Murray2009-03-312-10/+5
| | | | correction in a previously fixed test.
* fixed the test for win32 CompileErrorTarek Ziadé2009-03-311-1/+3
|
* catching msvc9compiler error as wellTarek Ziadé2009-03-311-1/+1
|
* #5583 Added optional Extensions in DistutilsTarek Ziadé2009-03-313-2/+33
|
* #1651995: fix _convert_ref for non-ASCII characters.Georg Brandl2009-03-312-1/+10
|
* Made handle_expt_event() be called last, so that we don't accidentally readJosiah Carlson2009-03-311-2/+2
| | | | after closing the socket.
* fix Thread.ident when it is the main thread or a dummy thread #5632Benjamin Peterson2009-03-312-1/+19
|
* take the usual lock precautions around _active_limbo_lockBenjamin Peterson2009-03-311-21/+13
|
* making sdist and config test silentsTarek Ziadé2009-03-312-2/+4
|
* added tests to the install_headers commandTarek Ziadé2009-03-312-6/+46
|
* added test to the install_data commandTarek Ziadé2009-03-312-6/+80
|
* more tests for the upload commandTarek Ziadé2009-03-312-8/+64
|
* more tests for the register commandTarek Ziadé2009-03-312-42/+89
|
* added tests for the clean commandTarek Ziadé2009-03-313-3/+69
|
* using log.warn for sys.stderrTarek Ziadé2009-03-312-9/+9
|
* #1674032: return value of flag from Event.wait(). OKed by Guido.Georg Brandl2009-03-312-1/+3
|
* Issue #5387: Fixed mmap.move crash by integer overflow. (take2)Hirokazu Yamamoto2009-03-311-4/+16
|
* Issue an actual PendingDeprecationWarning for the TestCase.fail* methods.Gregory P. Smith2009-03-311-9/+17
| | | | Document the deprecation.
* Remove the regrtest check that turns any ImportError into a skipped test.R. David Murray2009-03-311-1/+1
| | | | | Hopefully all modules whose imports legitimately result in a skipped test have been properly wrapped by the previous commits.
* Improve test_support.import_module docstring, removeR. David Murray2009-03-311-16/+14
| | | | | deprecated flag from get_attribute since it isn't likely to do anything useful.
* This resolves issue 1161031. Tests pass.Josiah Carlson2009-03-311-27/+25
|
* Delete out-of-date and little-known README from the testR. David Murray2009-03-311-413/+0
| | | | directory by consensus of devs at pycon sprint.
* #5190: export make_option in __all__.Georg Brandl2009-03-311-0/+1
|
* Rename the actual method definitions to the official assertFoo names.Gregory P. Smith2009-03-312-22/+53
| | | | | | | | | | Adds unittests to make sure the old fail* names continue to work now and adds a comment that they are pending deprecation. Also adds a test to confirm that the plural Equals method variants continue to exist even though we're unlikely to deprecate those. http://bugs.python.org/issue2578
* A few more test skips via import_module, and change import_module toR. David Murray2009-03-3110-15/+37
| | | | | | | return the error message produced by importlib, so that if an import in the package whose import is being wrapped is what failed the skip message will contain the name of that module instead of the name of the wrapped module. Also fixed formatting of some previous comments.
* Per the language summit, the optional fastpath imports should use ↵Raymond Hettinger2009-03-311-1/+1
| | | | from-import-star.
* The unittest.TestCase.assertEqual() now displays the differences in lists,Gregory P. Smith2009-03-314-69/+865
| | | | | | | | | | tuples, dicts and sets on failure. Many new handy type and comparison specific assert* methods have been added that fail with error messages actually useful for debugging. Contributed in by Google and completed with help from mfoord and GvR at PyCon 2009 sprints. Discussion lives in http://bugs.python.org/issue2578.
* Global statements from one function leaked into parallel functions.Jeremy Hylton2009-03-311-0/+24
| | | | | | | | | | | | | Re http://bugs.python.org/issue4315 The symbol table used the same name dictionaries to recursively analyze each of its child blocks, even though the dictionaries are modified during analysis. The fix is to create new temporary dictionaries via the analyze_child_block(). The only information that needs to propagate back up is the names of the free variables. Add more comments and break out a helper function. This code doesn't get any easier to understand when you only look at it once a year.