summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* When __slots__ are set to a unicode string, make it work the same asNeal Norwitz2007-04-143-2/+21
| | | | setting a plain string, ie don't expand to single letter identifiers.
* Add the necessary dependency for the Windows VC6 build to ensure 'pythoncore'Trent Mick2007-04-131-0/+3
| | | | | is built before '_ctypes' is attempted. Will backport to 2.5 once it is unfrozen for 2.5.1.
* Fix potential crash in path manipulation on windowsKristján Valur Jónsson2007-04-131-1/+1
|
* Fix a bug when using the __lltrace__ opcode tracer, and a problem sith ↵Kristján Valur Jónsson2007-04-132-3/+3
| | | | signed chars in frameobject.c which can occur with opcodes > 127
* Port r54805 from python25-maint branch:Barry Warsaw2007-04-131-0/+20
| | | | | | | | Add code to read from master_fd in the parent, breaking when we get an OSError (EIO can occur on Linux) or there's no more data to read. Without this, test_pty.py can hang on the waitpid() because the child is blocking on the stdout write. This will definitely happen on Mac OS X and could potentially happen on other platforms. See the comment for details.
* Fix utf-8-sig incremental decoder, which didn't recognise a BOM when theWalter Dörwald2007-04-123-7/+19
| | | | first chunk fed to the decoder started with a BOM, but was longer than 3 bytes.
* Patch #1695862: remove the cleanup code, now that Windows buildbots are greenŽiga Seilnacht2007-04-121-17/+0
| | | | again.
* Patch #1698951: clarify deprecation message in rexec and BastionGeorg Brandl2007-04-122-2/+2
|
* SF 1193128: Let str.translate(None) be an identity transformationRaymond Hettinger2007-04-126-10/+33
|
* Repair missing spaces after \UNIX.Georg Brandl2007-04-114-4/+4
|
* Exceptions are no longer old-style instances. Fix accordingly.Georg Brandl2007-04-111-2/+2
|
* SF 1191699: Make slices picklableRaymond Hettinger2007-04-113-0/+20
|
* Add some missing NULL checks which trigger crashes on low-memory conditions.Georg Brandl2007-04-112-0/+10
| | | | Found by Victor Stinner. Will backport when 2.5 branch is unfrozen.
* Describe undocumented third argument to touchline()Andrew M. Kuchling2007-04-111-2/+4
|
* Point readers at the patch submission instructionsAndrew M. Kuchling2007-04-111-3/+6
|
* Add window.chgat() method, submitted via e-mail by Fabian KreutzAndrew M. Kuchling2007-04-115-4/+84
|
* Repair a duplicate label and some obsolete uses of \setindexsubitem.Georg Brandl2007-04-106-42/+39
|
* General clean-up. Lot of margin corrections, comments, some typos.Facundo Batista2007-04-101-159/+170
| | | | | Exceptions now are raised in the new style. And a mockup class is now also new style. Thanks Santiago Pereson.
* Typo fix.Collin Winter2007-04-101-1/+1
|
* Minor fix to the tests pass ok even with -O.Facundo Batista2007-04-101-1/+2
|
* Patch #1695862: remove old test directory that causes test_urllib failuresŽiga Seilnacht2007-04-091-0/+14
| | | | | on Windows buildbots. The change is a one time fix and will be removed after a successful buildbot run.
* Added optional timeout to SocketHandler.makeSocket (SF #1695948)Vinay Sajip2007-04-091-1/+3
|
* Doc that file.next() has undefined behaviour when called on a file opened withBrett Cannon2007-04-082-8/+12
| | | | | | 'w'. Closes bug #1569057. To be backported once 2.5 branch is unfrozen.
* Convert test_fileinput to use unittest.Collin Winter2007-04-071-198/+196
|
* Convert test_module to use unittest.Collin Winter2007-04-061-45/+58
|
* Convert test_gc to use unittest.Collin Winter2007-04-061-588/+548
|
* Import cleanup in test_crypt.Collin Winter2007-04-061-1/+1
|
* Convert test_stringprep to use unittest.Collin Winter2007-04-061-61/+69
|
* Some grammar fixesAndrew M. Kuchling2007-04-061-5/+5
|
* Convert test_normalization to use unittest.Collin Winter2007-04-051-51/+57
|
* Convert test_long_future to use unittest.Collin Winter2007-04-051-50/+50
|
* Bug #1563759: struct.unpack doens't support buffer protocol objectsRaymond Hettinger2007-04-052-7/+33
|
* Fix WalkTests.test_traversal() on Windows. The cleanup inŽiga Seilnacht2007-04-041-25/+18
| | | | MakedirTests.setUp() can now be removed.
* Make test_softspace use unittest.Collin Winter2007-04-041-11/+20
|
* Make test_getopt use unittest.Collin Winter2007-04-041-174/+173
|
* Bug #1686475: Support stat'ing open files on Windows again.Martin v. Löwis2007-04-043-34/+77
| | | | Will backport to 2.5.
* Stop using test_support.verify().Collin Winter2007-04-041-8/+6
|
* Clean up imports.Collin Winter2007-04-041-4/+4
|
* Fix a race condition in this test -- instead of assuming that it will takeGuido van Rossum2007-04-041-1/+5
| | | | | the test server thread at most 0.5 seconds to get ready, use an event variable.
* Fixed the way that the .pem files are looked for, and changedFacundo Batista2007-04-041-16/+9
| | | | how to kill the process in win32 to use the _handle attribute.
* Changed the whole structure of startup and checking if theFacundo Batista2007-04-031-26/+36
| | | | server is available. Hope to not get more false alarms.
* Implement a contextmanager test.test_support.catch_warning that canWalter Dörwald2007-04-034-111/+129
| | | | | | | be used to catch the last warning issued by the warning framework. Change test_warnings.py and test_structmembers.py to use this new contextmanager.
* Added a SSL server to test_socket_ssl.py to be able to testFacundo Batista2007-04-033-11/+103
| | | | | | locally. Now, it checks if have openssl available and run those specific tests (it starts openssl at the beggining of all the tests and then kills it at the end).
* Add tests for the filename.Walter Dörwald2007-04-032-0/+33
| | | | Test that the stacklevel is handled correctly.
* Document that CatchWarningTests is reused by test_structmembers.py.Walter Dörwald2007-04-031-0/+2
|
* Move the functionality for catching warnings in test_warnings.py into a separateWalter Dörwald2007-04-032-2/+4
| | | | | class to that reusing the functionality in test_structmembers.py doesn't rerun the tests from test_warnings.py.
* Now using unittest for the tests infraestructure. Also split theFacundo Batista2007-04-032-113/+118
| | | | tests in those who need the network, and that who doesn't.
* Fix the strange case ofGeorg Brandl2007-04-031-8/+8
| | | | | | | | | \begin{methoddesc}[NNTP]{...} where \ifx#1\@undefined ended up comparing N and N, therefore executing the true part of the conditional, blowing up at \@undefined.
* - Fix an off-by-one bug in locale.strxfrm().Matthias Klose2007-04-032-1/+4
| | | | patch taken from http://bugs.debian.org/416934.
* SF #1382213: Tutorial section 9.5.1 ignores MRO for new-style classesRaymond Hettinger2007-04-031-11/+20
|