summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Collapse)AuthorAgeFilesLines
* Issue #5170: Fixed regression caused when fixing #5768.Vinay Sajip2009-04-221-1/+11
|
* Restore skips of posix and pty tests on Windows by calling theR. David Murray2009-04-212-3/+8
| | | | | test_support.import_module on the appropriate modules before any other imports.
* Fix for the Issue918368 - urllib doesn't correct server returned urlsSenthil Kumaran2009-04-212-0/+16
|
* Nit: integer division should use //, not /Mark Dickinson2009-04-201-1/+1
|
* Issue #3166: Make long -> float (and int -> float) conversionsMark Dickinson2009-04-202-0/+93
| | | | | | correctly rounded, using round-half-to-even. This ensures that the value of float(n) doesn't depend on whether we're using 15-bit digits or 30-bit digits for Python longs.
* making BuildWinInstTestCase silent in case bdist_wininst is not run under win32Tarek Ziadé2009-04-201-0/+1
|
* #5795 sysconfig._config_vars was shadowed in tearDownTarek Ziadé2009-04-201-3/+4
|
* Automatic conversion of floats to integers for struct.pack integer codesMark Dickinson2009-04-191-1/+1
| | | | is deprecated. Use an explicit int() instead.
* move test to a more appropiate oneBenjamin Peterson2009-04-181-25/+30
|
* try to initalize all builtin types with PyType_Ready to avoid problems like ↵Benjamin Peterson2009-04-181-0/+12
| | | | #5787
* fix a few nits in unittest.py #5771Benjamin Peterson2009-04-181-2/+2
|
* Issue #1869: Fix a couple of minor round() issues.Mark Dickinson2009-04-181-0/+3
|
* DistutilsSetupError was not raised when one single warning occuredTarek Ziadé2009-04-172-10/+9
|
* Issue #5768: Change to Unicode output logic and test case for same.Vinay Sajip2009-04-162-5/+6
|
* call __float__ on str subclasses #5759Benjamin Peterson2009-04-151-0/+12
| | | | tests by R. David Murray
* pep8-fiedTarek Ziadé2009-04-131-42/+23
|
* improved test coverage for distutils.cmdTarek Ziadé2009-04-132-7/+47
|
* deactivate test_search_cpp under win32Tarek Ziadé2009-04-131-0/+3
|
* #5741 followup: should also allow %%(blah)s.Georg Brandl2009-04-131-2/+2
|
* Fixed #5607: Distutils test_get_platform was failing fo Mac OS X fat binaries.Tarek Ziadé2009-04-131-1/+31
|
* Adjust test_asyncore to account for intentional asyncore behavior changeR. David Murray2009-04-131-4/+1
| | | | introduced by r70934 that was causing a test failure when run under -O.
* #5719: add short usage example to optparse docstring.Georg Brandl2009-04-121-0/+13
|
* remove useless importBenjamin Peterson2009-04-121-1/+0
|
* #5741: dont disallow double percent signs in SafeConfigParser.set() keys.Georg Brandl2009-04-122-4/+8
|
* removed string usage and added a test for _cleanTarek Ziadé2009-04-122-4/+22
|
* added a test for finalize_optionsTarek Ziadé2009-04-122-7/+21
|
* added a simple test for search_cppTarek Ziadé2009-04-122-5/+15
|
* pep8-fied the module before adding testsTarek Ziadé2009-04-121-37/+25
|
* removed the print statements and added a testTarek Ziadé2009-04-122-6/+52
|
* Make test_asyncore tests match code changes introduced by theR. David Murray2009-04-111-37/+20
| | | | | fix to Issue1161031, refactoring the test to simplify it in the process.
* testing a full check caseTarek Ziadé2009-04-112-1/+8
|
* #5732: added the check command into DistutilsTarek Ziadé2009-04-113-1/+236
|
* Issue 5354: Provide a standardised testing mechanism for doing fresh imports ↵Nick Coghlan2009-04-113-35/+76
| | | | of modules, including the ability to block extension modules in order to test the pure Python fallbacks
* remove unpleasant execChris Withers2009-04-111-5/+11
|
* #5698: Fix casing of !DOCTYPE to conform to W3C specs.Georg Brandl2009-04-101-1/+1
|
* Issue #2170: refactored xml.dom.minidom.normalize, increasing bothR. David Murray2009-04-092-18/+172
| | | | its clarity and its speed.
* Fixed #5731: Distutils bdist_wininst no longer worked on non-Windows platformsTarek Ziadé2009-04-092-3/+37
|
* Issue 5665: add more pickling tests.Collin Winter2009-04-095-21/+428
| | | | | | | | | | | - Add tests for the module-level load() and dump() functions. - Add tests for cPickle's internal data structures, stressing workloads with many gets/puts. - Add tests for the Pickler and Unpickler classes, in particular the memo attribute. - test_xpickle is extended to test backwards compatibility with Python 2.4, 2.5 and 2.6 by round-tripping pickled objects through a worker process. This is guarded with a regrtest -u xpickle resource.
* Minor factoring.Raymond Hettinger2009-04-081-1/+1
|
* Add docstrings.Raymond Hettinger2009-04-081-0/+25
|
* - Make timing assertions very generous (a la test_timeout.py)Jack Diederich2009-04-071-49/+60
| | | | | - Break the gc cycle in negotiation tests - test the different guarantees of read_lazy and read_very_lazy
* eliminate more race conditions in telnetlib testsJack Diederich2009-04-071-51/+58
|
* Issue #5695: Minor tweak to improve the code as suggested by Brett Cannon ↵Vinay Sajip2009-04-071-1/+1
| | | | and as implemented in the Py3K branch.
* revert unrelated change to test_telnetlibBenjamin Peterson2009-04-071-1/+1
|
* fix since difference formating of SyntaxErrorsBenjamin Peterson2009-04-072-5/+9
|
* fix syntax tests after formatting changeBenjamin Peterson2009-04-072-44/+88
|
* add create_connection to __all__ #5711Benjamin Peterson2009-04-061-1/+1
|
* - Issue #2254: Fix CGIHTTPServer information disclosure. Relative paths areGregory P. Smith2009-04-062-19/+98
| | | | now collapsed within the url properly before looking in cgi_directories.
* test the telnetlib.Telnet interface more thoroughlyJack Diederich2009-04-061-3/+276
|
* Fixes issue5705: os.setuid() and friends did not accept the same range ofGregory P. Smith2009-04-051-1/+44
| | | | values that pwd.getpwnam() returns.