summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Convert test_ossaudiodev to use unittest.Collin Winter2007-04-251-120/+125
|
* Import and raise statement cleanup.Collin Winter2007-04-251-17/+9
|
* Set missing svn:eol-style property on text files.Tim Peters2007-04-250-0/+0
|
* Whitespace normalization.Tim Peters2007-04-251-1/+1
|
* Change test_support.have_unicode to use True/False instead of 1/0.Collin Winter2007-04-251-2/+2
|
* Remove functionality from test_datetime.test_main() that does reference ↵Collin Winter2007-04-251-20/+1
| | | | count checking; 'regrtest.py -R' is the way to do this kind of testing.
* Standardize on test.test_support.run_unittest() (as opposed to a mix of ↵Collin Winter2007-04-2529-181/+88
| | | | run_unittest() and run_suite()). Also, add functionality to run_unittest() that admits usage of unittest.TestLoader.loadTestsFromModule().
* Whitespace normalization. Ugh, we really need to do this more often.Neal Norwitz2007-04-2538-387/+386
| | | | You might want to review this change as it's my first time. Be gentle. :-)
* Markup fix.Georg Brandl2007-04-251-1/+1
|
* Patch #1698768: updated the "using Python on the Mac" intro.Georg Brandl2007-04-252-173/+135
|
* Remove obsolete comment. Importing of .dll files has been discontinued, only ↵Kristján Valur Jónsson2007-04-251-8/+0
| | | | .pyd files supported on windows now.
* Make pythoncore compile cleanly with VisualStudio 2005. Used an explicit ↵Kristján Valur Jónsson2007-04-253-2/+4
| | | | typecast to get a 64 bit integer, and undefined the Yield macro that conflicts with winbase.h
* Merge change 54909 from release25-maint: Fix several minor issues ↵Kristján Valur Jónsson2007-04-256-20/+35
| | | | discovered using code analysis in VisualStudio 2005 Team Edition
* Fix markupRaymond Hettinger2007-04-241-1/+1
|
* Bug #1706381: Specifying the SWIG option "-c++" in the setup.py fileGeorg Brandl2007-04-242-1/+6
| | | | | (as opposed to the command line) will now write file names ending in ".cpp" too.
* Bug #1705717: error in sys.argv docs.Georg Brandl2007-04-241-2/+2
|
* Added a comment about last change in urllib2.py (all 2xx responsesFacundo Batista2007-04-241-0/+4
| | | | are ok now).
* Some new year updates.Georg Brandl2007-04-244-3/+6
|
* Fix SF #1703110, Incorrect example for add_password() (use uri, not host)Neal Norwitz2007-04-242-2/+8
|
* Remove code that hasn't been called in years.Collin Winter2007-04-241-34/+0
|
* Convert PyUnit -> unittest.Collin Winter2007-04-241-11/+10
|
* As specified in RFC 2616, 2xx code indicates that the client'sFacundo Batista2007-04-232-4/+14
| | | | | request was successfully received, understood, and accepted. Now in these cases no error is raised. Also fixed tests.
* Added tests for other methods of SSL object. Now we coverFacundo Batista2007-04-221-0/+15
| | | | | all the object methods. This is the final step to close the #451607 bug.
* Bug #1704790: bind name "sys" locally in __del__ method so that it isGeorg Brandl2007-04-211-1/+1
| | | | not cleared before __del__ is run.
* Add an optional address to copy the failure mails to.Neal Norwitz2007-04-201-3/+20
| | | | | | | | | Detect a conflict in the only file that should have outstanding changes when this script is run. This doesn't matter on the trunk, but does when run on a branch. Trunk always has the date set to today in boilerplate.tex. Each time a release is cut with a different date, a conflict occurs. (We could copy a known good version, but then we would lose changes to this file.)
* Fix a usage of the dangerous pattern decref - modify field - incref.Armin Rigo2007-04-191-2/+3
|
* Revert r53997 as perArmin Rigo2007-04-192-181/+93
| | | | | | | | | http://mail.python.org/pipermail/python-dev/2007-March/071796.html . I've kept a couple of still-valid extra tests in test_descr, but didn't bother to sort through the new comments and refactorings added in r53997 to see if some of them could be kept. If so, they could go in a follow-up check-in.
* SF #1703270, add missing declaration in readline.c to avoid compiler warning.Neal Norwitz2007-04-191-1/+3
|
* Silence a compiler warning about incompatible pointer types.Brett Cannon2007-04-191-1/+1
|
* Add Travis Oliphant.Martin v. Löwis2007-04-171-1/+4
|
* Check the availability of the urlfetch resource earlier than before.Collin Winter2007-04-161-0/+2
|
* SF #1701207, Fix bogus assertion (and test it!)Neal Norwitz2007-04-161-2/+2
|
* 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.