summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Issue #6293: Have regrtest.py echo back sys.flags. This is done by defaultAntoine Pitrou2011-01-032-3/+15
| | | | | in whole runs and enabled selectively using `--header` when running an explicit list of tests. Original patch by Collin Winter.
* Update description of Tools/unicodeMichael Foord2011-01-031-2/+3
|
* Issue #7716: Under Solaris, don't assume existence of /usr/xpg4/bin/grep inAntoine Pitrou2011-01-034-3/+7
| | | | the configure script but use $GREP instead. Patch by Fabian Groffen.
* Issue #10806, issue #9905: Fix subprocess pipes when some of the standardAntoine Pitrou2011-01-034-33/+104
| | | | | file descriptors (0, 1, 2) are closed in the parent process. Initial patch by Ross Lagerwall.
* Fix test_site for systems without unsetenv. Reported by Zsolt Cserna.Éric Araujo2011-01-031-2/+6
|
* Enable unittest.TestCase to be instantiated without providing a method name.Michael Foord2011-01-035-5/+30
| | | | Changed unittestgui to show number of discovered tests in the status bar.
* test_subprocess: close pipes at the end of test_pipe_cloexec_real_tools()Victor Stinner2011-01-031-0/+3
|
* pydoc: close the DocServer when doneVictor Stinner2011-01-031-0/+2
|
* Issue #10816: multiprocessing.SocketClient() closes the socket on errorVictor Stinner2011-01-031-15/+14
| | | | Use a context manager to close immediatly the socket on error.
* Issue 10502: addition of unittestgui to Tools/Michael Foord2011-01-035-2/+509
|
* test_socket: use context managers to close directly the socketVictor Stinner2011-01-031-34/+38
| | | | Fix ResourceWarning(unclosed socket) warnings. Patch written by Nadeem Vawda.
* test_xmlrpc: close the transport when doneVictor Stinner2011-01-031-0/+8
| | | | Fix a ResourceWarning(unclosed socket). Patch written by Nadeem Vawda.
* test_tkinter: use a context manager to close directly the pipeVictor Stinner2011-01-032-1/+3
| | | | Patch written by Nadeem Vawda
* test_timeout: move testRecvfromTimeout() to a UDP-specific test caseVictor Stinner2011-01-031-22/+38
| | | | Fix a ResourceWarning(unclosed socket).
* test_sockserver: close servers when doneVictor Stinner2011-01-031-0/+2
|
* Issue 10786: unittest documentation update.Michael Foord2011-01-031-4/+10
|
* Reverting the mistaken commit r87677. Checked in py3rsa.py by mistake.Senthil Kumaran2011-01-031-181/+0
|
* py3k implmentation of RSA algorithm,Senthil Kumaran2011-01-031-0/+181
|
* Removes the 'Call' class which is used to control execution order and is ↵Brian Quinlan2011-01-031-400/+167
| | | | unreliable on Windows
* Supply a reduce method for pickling.Raymond Hettinger2011-01-031-0/+3
|
* Make C helper function more closely match the pure python version, and add ↵Raymond Hettinger2011-01-032-23/+63
| | | | tests.
* Skip hanging test.Martin v. Löwis2011-01-031-0/+1
|
* #8278: In the Windows implementation of stat() and utime(),Amaury Forgeot d'Arc2011-01-033-12/+29
| | | | | use time_t instead of int. This gives support for dates after 2038, at least when compiled with VS2003 or later, where time_t is 64bit.
* Issue #10798: Reject supporting concurrent.futures if the system hasMartin v. Löwis2011-01-033-72/+87
| | | | too few POSIX semaphores.
* #8013 follow-up:Georg Brandl2011-01-022-13/+33
| | | | | | * In asctime and ctime, properly remove the newline if the year has more than four digits * Consistent error message for both functions * Fix the test comments and add a check for the removed newline
* Issue #8013: Fixed testAlexander Belopolsky2011-01-021-2/+9
|
* Some nits.Antoine Pitrou2011-01-022-9/+12
|
* Add a shutdown() call in the server example.Antoine Pitrou2011-01-021-0/+1
|
* Clarify behaviour of close() and shutdown() on sockets.Antoine Pitrou2011-01-021-0/+6
|
* issue10802: fallback to pipe+fcntl when the pipe2 syscall fails with errno ↵Gregory P. Smith2011-01-021-17/+29
| | | | ENOSYS.
* Issue #8013: Fixed time.asctime segfault when OS's asctime failsAlexander Belopolsky2011-01-022-0/+7
|
* Fix bad quoting in r87639. Caught by Arfrever.Antoine Pitrou2011-01-022-5/+5
|
* Issue #10807: Remove base64, bz2, hex, quopri, rot13, uu and zlib codecs fromVictor Stinner2011-01-022-18/+21
| | | | the codec aliases. They are still accessible via codecs.lookup().
* Issue #10475: Don't hardcode compilers for LDSHARED/LDCXXSHARED on NetBSDAntoine Pitrou2011-01-024-280/+264
| | | | and DragonFly BSD. Patch by Nicolas Joly.
* Fix code indentation.Georg Brandl2011-01-021-18/+18
|
* Relax test condition a lotAntoine Pitrou2011-01-021-2/+3
|
* #1665333: add more docs for optparse.OptionGroup.Georg Brandl2011-01-021-25/+99
|
* Fix doctest to not rely on order of dictionary entries.Raymond Hettinger2011-01-021-11/+12
| | | | Use super() instead of direct references to the dict superclass.
* Fix OrderedDic.pop() to work for subclasses that define __missing__().Raymond Hettinger2011-01-012-2/+27
|
* Make it easier to extend OrderedDict without breaking it.Raymond Hettinger2011-01-012-2/+10
|
* post release bumpGregory P. Smith2011-01-011-1/+1
|
* update copyright to 2011Benjamin Peterson2011-01-011-1/+1
|
* #10801: do not actually extract, just open() the files in the test zipfile.Georg Brandl2011-01-011-9/+4
|
* #10801: In zipfile, support different encodings for the header and the ↵Georg Brandl2011-01-014-1/+24
| | | | filenames. Patch by MvL, test by Eli Bendersky.
* Fix issue references.Georg Brandl2011-01-011-9/+9
|
* Issue 6285: add NEWS entry for 3.2.Terry Reedy2011-01-011-0/+3
|
* Issue 6285: catch missing IDLE help file.Terry Reedy2011-01-011-3/+11
|
* Typo.Raymond Hettinger2010-12-311-1/+1
|
* Fix OrderedDict.setdefault() to work for subclasses that define __missing__().Raymond Hettinger2010-12-313-1/+16
|
* Happy New Year! (CET edition)Georg Brandl2010-12-316-11/+11
|