summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge the doc for assertIs[Not], assertIs[Not]None, and assert[Not]IsInstance.Ezio Melotti2010-11-041-32/+9
|
* Can build older OpenSSL in http://svn.python.org/projects/externals/Hirokazu Yamamoto2010-11-043-3/+3
| | | | without Perl again.
* Added svn:ignore.Hirokazu Yamamoto2010-11-040-0/+0
|
* Issue #5391: mmap.read_byte() should return unsigned value [0, 255]Hirokazu Yamamoto2010-11-042-1/+10
| | | | instead of signed value [-127, 128].
* Fix Issue 10307 - compile error in readline.cSenthil Kumaran2010-11-041-1/+1
|
* Fix three ResourceWarnings.Brian Curtin2010-11-041-0/+5
| | | | Mimic the clientTearDown from ThreadedTCPSocketTest, closing the socket.
* Demote one warning to a note. There's no security risk here, just a note on ↵Raymond Hettinger2010-11-041-1/+1
| | | | usage and avialability.
* Put warning block in the main flow of text.Raymond Hettinger2010-11-041-16/+14
|
* classic classes are gone; whoppie!Benjamin Peterson2010-11-041-13/+1
|
* deuglifyBenjamin Peterson2010-11-031-2/+3
|
* Implement http://bugs.python.org/issue10155 using And Clover's patch, w/addedPhillip J. Eby2010-11-035-8/+164
| | | | | docs and support for more client-generated CGI variables. (This should complete the WSGI 1.0.1 compliance changes for Python 3.x.)
* update items/keys/values doc #10300Benjamin Peterson2010-11-031-6/+4
|
* Divide the context manager signature from the normal one for consistency ↵Ezio Melotti2010-11-031-2/+4
| | | | with the other methods.
* Minor cleanups to unittest doc.Ezio Melotti2010-11-031-4/+4
|
* List the assert* methods in tables in unittest doc.Ezio Melotti2010-11-031-194/+328
|
* Issue #10285: explain the `flag` return field better in NNTP.list().Antoine Pitrou2010-11-032-2/+12
| | | | Patch by Julien Élie.
* Issue #10281: nntplib now returns None for absent fields in the OVER/XOVERAntoine Pitrou2010-11-034-4/+35
| | | | response, instead of raising an exception.
* issue 9981Kristján Valur Jónsson2010-11-033-87/+48
| | | | let make_buildinfo use a temporary directory on windows
* Disabling SNI test; server admin would not like us to use it for automated ↵Antoine Pitrou2010-11-031-2/+3
| | | | tests.
* A newline in lineno output breaks pyframe output.Georg Brandl2010-11-031-1/+1
|
* Update docs (and sample app in wsgiref.simple_server) to reflect PEP 3333.Phillip J. Eby2010-11-033-22/+28
|
* Issue #10173: test_multiprocessing shouldn't pickle TestCase instancesAntoine Pitrou2010-11-021-24/+49
|
* Issue #10280: NNTP.nntp_version should reflect the highest versionAntoine Pitrou2010-11-023-4/+9
| | | | advertised by the server.
* Update wsgiref for PEP 3333, and fix errors introduced into the test suite ↵Phillip J. Eby2010-11-024-93/+67
| | | | | | by converting type() checks to isinstance(). (When WSGI specifies a built-in type, it does NOT mean "this type or a subclass" -- it means 'type(x) is SpecifiedType'.)
* remove some things that are now testedBenjamin Peterson2010-11-021-8/+0
|
* Ditch some dead code in test_unicode_file.Brett Cannon2010-11-022-26/+2
| | | | Closes issue #10294. Thanks Stefan Behnel for the find.
* Updating unittest docs to reflect change in ↵Michael Foord2010-11-021-4/+4
| | | | unittest.TestCase.assert[Not]AlmostEqual signature change
* Defined Py_BUILD_CORE_MODULE also on VC7.1.Hirokazu Yamamoto2010-11-0215-58/+58
| | | | # I don't have this compiler, so I couldn't test it.
* Py_BUILD_CORE_MODULE was not needed in python.dsp and pythonw.dsp.Hirokazu Yamamoto2010-11-022-8/+8
|
* Remove the keyword only restriction for places and delta args in ↵Michael Foord2010-11-021-2/+2
| | | | unittest.TestCase.assert[Not]AlmostEqual
* Defined Py_BUILD_CORE_MODULE also on VC6.Hirokazu Yamamoto2010-11-0218-72/+72
|
* Fix bug 9340 - argparse parse_known_args didn't work with subparsersSteven Bethard2010-11-022-2/+34
|
* Clean up ResourceWarnings. Explictly close stdout from the subprocess.Brian Curtin2010-11-021-0/+1
|
* Clean up ResourceWarnings due to unclosed sockets.Brian Curtin2010-11-021-0/+20
|
* Remove extracted trees at the end of the test.Martin v. Löwis2010-11-011-8/+17
|
* Issue #10184: Touch directories only once when extracting a tarfile.Martin v. Löwis2010-11-014-11/+29
|
* Fix issue 9926. TestSuite subclasses that override __call__ are called ↵Michael Foord2010-11-013-19/+32
| | | | correctly.
* Translated German message into English.Alexander Belopolsky2010-11-011-1/+1
|
* Issue #10199: Fixing r86095 - svn did not like combining rename and change ↵Alexander Belopolsky2010-11-011-119/+0
| | | | of directory.
* Issue #10199: Fixing r86095 - svn did not like combining rename and change ↵Alexander Belopolsky2010-11-011-0/+119
| | | | of directory.
* Issue #10199: Fixing r86095 - svn did not like combining rename and change ↵Alexander Belopolsky2010-11-011-0/+119
| | | | of directory.
* Reverted inadvertent change from r86095Alexander Belopolsky2010-11-011-8/+0
|
* Issue #10199: Moved Demo/turtle under Lib/Alexander Belopolsky2010-11-0129-481/+32
|
* Fix ResourceWarning occuring on Windows. Close stdout/stderr pipes.Brian Curtin2010-11-011-0/+2
|
* Fix for issue 9355 where with multiple mutually exclusive arguments, some ↵Steven Bethard2010-11-012-2/+27
| | | | brackets were being lost in the usage messages
* Fix bug 9352 where characters were being lost in parsing some short optionsSteven Bethard2010-11-012-7/+31
|
* Issue #7061: Simplified a section title.Alexander Belopolsky2010-11-011-2/+2
|
* Get argparse.__all__ back up to date (issue 9353)Steven Bethard2010-11-012-3/+20
|
* Close subprocess pipes to clear ResourceWarning messages in debug mode.Brian Curtin2010-11-012-0/+3
|
* Unset COLUMNS for test_argparse (and restore afterwards) (issue 9553)Steven Bethard2010-11-011-0/+9
|