summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* catching msvc9compiler error as wellTarek Ziadé2009-03-311-1/+1
|
* Improve examples for collections.deque()Raymond Hettinger2009-03-311-25/+24
|
* #5018: remove confusing paragraph.Georg Brandl2009-03-311-7/+5
|
* #5617: add a handy function to print a unicode string to gdbinit.Georg Brandl2009-03-311-0/+13
|
* #5583 Added optional Extensions in DistutilsTarek Ziadé2009-03-315-2/+40
|
* Issue 5619: Pass MS CRT debug flags into subprocessesJesse Noller2009-03-314-0/+12
|
* #3427: document correct return type for urlopen().info().Georg Brandl2009-03-311-1/+1
|
* #1651995: fix _convert_ref for non-ASCII characters.Georg Brandl2009-03-312-1/+10
|
* #5563: more documentation for bdist_msi.Georg Brandl2009-03-311-1/+9
|
* Made handle_expt_event() be called last, so that we don't accidentally readJosiah Carlson2009-03-311-2/+2
| | | | after closing the socket.
* #1676135: remove trailing slashes from --prefix argument.Georg Brandl2009-03-312-1/+15
|
* #1675026: add a note about a strange Windows problem, and remove notes about ↵Georg Brandl2009-03-311-69/+4
| | | | AtheOS.
* Remove warning about pending Win9x support removal.Georg Brandl2009-03-311-15/+0
|
* fix Thread.ident when it is the main thread or a dummy thread #5632Benjamin Peterson2009-03-313-1/+22
|
* #5598: document DocFileSuite *args argument.Georg Brandl2009-03-311-32/+34
|
* take the usual lock precautions around _active_limbo_lockBenjamin Peterson2009-03-311-21/+13
|
* #1530012: move TQS section before raw strings.Georg Brandl2009-03-311-15/+14
|
* 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-313-4/+12
|
* Issue #5387: Fixed mmap.move crash by integer overflow. (take2)Hirokazu Yamamoto2009-03-312-5/+17
|
* Issue an actual PendingDeprecationWarning for the TestCase.fail* methods.Gregory P. Smith2009-03-312-9/+38
| | | | Document the deprecation.
* Add NEWS entry for regrtest change.R. David Murray2009-03-311-0/+4
|
* 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.
* #5618: fix typo.Georg Brandl2009-03-311-1/+1
|
* #4411: document mro() and __mro__. (I hope I got it right.)Georg Brandl2009-03-311-1/+16
|
* Fix-up unwanted change.Georg Brandl2009-03-311-1/+1
|
* #5190: export make_option in __all__.Georg Brandl2009-03-311-0/+1
|
* #1096310: document usage of sys.__std*__ a bit better.Georg Brandl2009-03-311-3/+8
|
* #4882: document named group behavior a bit better.Georg Brandl2009-03-311-7/+9
|
* 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
* #5241: document missing U in regex howto.Georg Brandl2009-03-311-0/+12
|
* #5227: note that Py_Main doesnt return on SystemExit.Georg Brandl2009-03-311-0/+4
|
* 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.
* #5245: note that PyRun_SimpleString doesnt return on SystemExit.Georg Brandl2009-03-311-0/+4
|
* missed the news/acks for netbsd patchJesse Noller2009-03-312-0/+3
|
* #837577: note cryptic return value of spawn*e on invalid env dicts.Georg Brandl2009-03-311-1/+3
|
* Apply patch for netbsd multiprocessing supportJesse Noller2009-03-313-2/+15
|
* Per the language summit, the optional fastpath imports should use ↵Raymond Hettinger2009-03-311-1/+1
| | | | from-import-star.
* #970783: document PyObject_Generic[GS]etAttr.Georg Brandl2009-03-311-0/+21
|
* #992207: document that the parser only accepts \\n newlines.Georg Brandl2009-03-311-1/+6
|
* The unittest.TestCase.assertEqual() now displays the differences in lists,Gregory P. Smith2009-03-316-90/+1079
| | | | | | | | | | 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.