summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* sys.long_info attributes should be ints, not longsMark Dickinson2009-04-021-3/+5
* Actually the displayhook should print the repr.Georg Brandl2009-04-021-1/+1
* Add missing iteritems() call to the for loop in mailbox.MH.get_message().R. David Murray2009-04-022-1/+7
* Store the functions in the _type_equality_funcs as wrapped objects that are d...Michael Foord2009-04-022-4/+27
* Add custom initializer argument to multiprocess.Manager*, courtesy of lekmaJesse Noller2009-04-023-4/+44
* Better exception messages for unittest assert methods.Michael Foord2009-04-022-70/+270
* Fixing the issue4860. Escaping embedded '"' character in js_output() method o...Senthil Kumaran2009-04-022-5/+5
* Remove port spec from run.py and fix bug whereKurt B. Kaiser2009-04-022-4/+10
* Fix test_doctest, missed two assignments to curframe.Georg Brandl2009-04-021-0/+2
* handle SEEK_ constants in test_ioBenjamin Peterson2009-04-021-4/+4
* Cache the f_locals dict of the current frame, since every access to frame.f_l...Georg Brandl2009-04-011-14/+21
* remove double underscoresBenjamin Peterson2009-04-011-31/+32
* In Pdb, stop assigning values to __builtin__._ which interferes with the one ...Georg Brandl2009-04-011-0/+9
* Add tests checking the CSV module's ability to handleR. David Murray2009-04-011-0/+18
* 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
* test_warnings ironically had a single test that was not protecting the warningsBrett Cannon2009-04-011-8/+8
* test_logging was blindly clearing the warnings filter. This causedBrett Cannon2009-04-011-22/+24
* 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
* #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
* 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 --help-...Georg Brandl2009-04-011-0/+2
* 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
* 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
* 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
* 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