Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | RFE #1491485: str/unicode.endswith()/startswith() now accept a tuple as ↵ | Georg Brandl | 2006-06-09 | 5 | -83/+182 |
| | | | | first argument. | ||||
* | svn:ignore .pyc and .pyo files. | Brett Cannon | 2006-06-09 | 0 | -0/+0 |
| | |||||
* | Test file.__exit__. | Georg Brandl | 2006-06-09 | 1 | -1/+11 |
| | |||||
* | Whitespace normalization. | Tim Peters | 2006-06-09 | 5 | -81/+3 |
| | |||||
* | Fix inconsistency in naming within an enum. | Brett Cannon | 2006-06-09 | 1 | -12/+12 |
| | |||||
* | Add note about wsgiref | Andrew M. Kuchling | 2006-06-09 | 1 | -0/+2 |
| | |||||
* | Add note about XMLGenerator bugfix | Andrew M. Kuchling | 2006-06-09 | 1 | -0/+4 |
| | |||||
* | Import wsgiref into the stdlib, as of the external version 0.1-r2181. | Phillip J. Eby | 2006-06-09 | 10 | -0/+2962 |
| | |||||
* | Turn off warning about deprecated CRT functions on for VisualStudio .NET 2005. | Kristján Valur Jónsson | 2006-06-09 | 2 | -0/+8 |
| | | | | Make the definition #ARRAYSIZE conditional. VisualStudio .NET 2005 already has it defined using a better gimmick. | ||||
* | [Bug #1472827] Make saxutils.XMLGenerator handle \r\n\t in attribute values ↵ | Andrew M. Kuchling | 2006-06-09 | 2 | -2/+7 |
| | | | | by escaping them properly. 2.4 bugfix candidate. | ||||
* | Markup fix | Andrew M. Kuchling | 2006-06-09 | 1 | -1/+1 |
| | |||||
* | Fix grammar and reflow | Neal Norwitz | 2006-06-09 | 1 | -2/+2 |
| | |||||
* | Remove the temporary hack to force test_optparse to | Tim Peters | 2006-06-09 | 1 | -5/+0 |
| | | | | | | | run immediately after test_file. At least 8 buildbot boxes passed since the underlying problem got fixed, and they all failed before the fix, so there's no point to this anymore. | ||||
* | testUnicodeOpen(): I have no idea why, but making this | Tim Peters | 2006-06-09 | 1 | -1/+8 |
| | | | | | | | | | test clean up after itself appears to fix the test failures when test_optparse follows test_file. test_main(): Get rid of TESTFN no matter what. That's also enough to fix the mystery failures. Doesn't hurt to fix them twice :-) | ||||
* | AutoFileTests.tearDown(): Removed mysterious undocumented | Tim Peters | 2006-06-09 | 1 | -27/+28 |
| | | | | | | | try/except. Remove TESTFN. Throughout: used open() instead of file(), and wrapped long lines. | ||||
* | To boost morale :-), force test_optparse to run immediately | Tim Peters | 2006-06-09 | 1 | -0/+5 |
| | | | | | | after test_file until we can figure out how to fix it. (See python-dev; at the moment we don't even know which checkin caused the problem.) | ||||
* | Whitespace normalization. | Tim Peters | 2006-06-09 | 1 | -1/+1 |
| | | | | | | Since test_file is implicated in mysterious test failures when followed by test_optparse, if I had any brains I'd look at the checkin that last changed test_file ;-) | ||||
* | Update functools section | Andrew M. Kuchling | 2006-06-09 | 1 | -10/+36 |
| | |||||
* | Buffer objects would return the read or write buffer for a wrapped object when | Brett Cannon | 2006-06-08 | 4 | -22/+85 |
| | | | | | | | | | the char buffer was requested. Now it actually returns the char buffer if available or raises a TypeError if it isn't (as is raised for the other buffer types if they are not present but requested). Not a backport candidate since it does change semantics of the buffer object (although it could be argued this is enough of a bug to bother backporting). | ||||
* | Make binascii.hexlify() use s# for its arguments instead of t# to actually | Brett Cannon | 2006-06-08 | 2 | -1/+4 |
| | | | | match its documentation stating it accepts any read-only buffer. | ||||
* | Convert test_file to unittest. | Georg Brandl | 2006-06-08 | 1 | -332/+305 |
| | |||||
* | Bug #1502805: don't alias file.__exit__ to file.close since the | Georg Brandl | 2006-06-08 | 1 | -1/+18 |
| | | | | latter can return something that's true. | ||||
* | Add functools.update_wrapper() and functools.wraps() as described in PEP 356 | Nick Coghlan | 2006-06-08 | 4 | -18/+202 |
| | |||||
* | Argh. "integer" is a very confusing word ;) | Georg Brandl | 2006-06-08 | 2 | -5/+2 |
| | | | | | Actually, checking for INT_MAX and INT_MIN is correct since the format code explicitly handles a C "int". | ||||
* | Add news for recent bugfix. | Georg Brandl | 2006-06-08 | 1 | -0/+3 |
| | |||||
* | Bug #1502728: Correctly link against librt library on HP-UX. | Georg Brandl | 2006-06-08 | 2 | -1/+3 |
| | |||||
* | Bug #1502750: Fix getargs "i" format to use LONG_MIN and LONG_MAX for bounds ↵ | Georg Brandl | 2006-06-08 | 1 | -2/+2 |
| | | | | checking. | ||||
* | Typo fix | Andrew M. Kuchling | 2006-06-08 | 1 | -1/+1 |
| | |||||
* | (arre, arigo) SF bug #1350060 | Armin Rigo | 2006-06-08 | 4 | -11/+81 |
| | | | | | | Give a consistent behavior for comparison and hashing of method objects (both user- and built-in methods). Now compares the 'self' recursively. The hash was already asking for the hash of 'self'. | ||||
* | pasted set_lk_detect line in wrong spot in previous commit. fixed. passes ↵ | Gregory P. Smith | 2006-06-08 | 1 | -1/+1 |
| | | | | tests this time. | ||||
* | * Turn the deadlock situation described in SF bug #775414 into a | Gregory P. Smith | 2006-06-08 | 2 | -0/+11 |
| | | | | | DBDeadLockError exception. * add the test case for my previous dbtables commit. | ||||
* | - bsddb: the bsddb.dbtables Modify method now raises the proper error and | Gregory P. Smith | 2006-06-08 | 2 | -18/+29 |
| | | | | | | | | | aborts the db transaction safely when a modifier callback fails. Fixes SF python patch/bug #1408584. Also cleans up the bsddb.dbtables docstrings since thats the only documentation that exists for that unadvertised module. (people really should really just use sqlite3) | ||||
* | Fix a refleak in recvfrom_into | Neal Norwitz | 2006-06-08 | 1 | -1/+1 |
| | |||||
* | Clarify documentation for bf_getcharbuffer. | Brett Cannon | 2006-06-07 | 1 | -6/+10 |
| | |||||
* | Fix for foreign functions returning small structures on 64-bit big | Thomas Heller | 2006-06-07 | 1 | -1/+3 |
| | | | | | | | | endian machines. Should fix the remaininf failure in the PPC64 Debian buildbot. Thanks to Matthias Klose for providing access to a machine to debug and test this. | ||||
* | Add missing svn:eol-style property to text files. | Tim Peters | 2006-06-07 | 0 | -0/+0 |
| | |||||
* | Whitespace normalization. | Tim Peters | 2006-06-07 | 2 | -2/+2 |
| | |||||
* | * If BuildApplet.py is used as an applet it starts with a version of | Ronald Oussoren | 2006-06-07 | 2 | -57/+45 |
| | | | | | | | | sys.exutable that isn't usuable on an #!-line. That results in generated applets that don't actually work. Work around this problem by resetting sys.executable. * argvemulator.py didn't work on intel macs. This patch fixes this (bug #1491468) | ||||
* | - Patch the correct version of python in the Info.plists at build time, instead | Ronald Oussoren | 2006-06-07 | 4 | -10/+18 |
| | | | | | of relying on a maintainer to update them before releases. - Remove the now empty Mac/OSX directory | ||||
* | And the last bit: move IDLE one level up and adjust makefiles | Ronald Oussoren | 2006-06-07 | 8 | -25/+350 |
| | |||||
* | Move Mac/OSX/* one level up | Ronald Oussoren | 2006-06-07 | 101 | -4042/+25 |
| | |||||
* | mv Mac/OSX/BuildScript one level up | Ronald Oussoren | 2006-06-07 | 9 | -0/+1261 |
| | |||||
* | Move Mac/OSX/PythonLauncher one level up | Ronald Oussoren | 2006-06-07 | 24 | -0/+1372 |
| | |||||
* | Move Mac/OSX/Tools one level up | Ronald Oussoren | 2006-06-07 | 10 | -0/+1046 |
| | |||||
* | Mention other placeholders | Andrew M. Kuchling | 2006-06-07 | 1 | -2/+3 |
| | |||||
* | Add an item; also, escape % | Andrew M. Kuchling | 2006-06-07 | 1 | -1/+6 |
| | |||||
* | Mention other placeholders | Andrew M. Kuchling | 2006-06-07 | 1 | -2/+3 |
| | |||||
* | Add an SQLite introduction, taken from the 'What's New' text | Andrew M. Kuchling | 2006-06-07 | 1 | -0/+98 |
| | |||||
* | SF patch 1501987: Remove randomness from test_exceptions, | Tim Peters | 2006-06-07 | 1 | -19/+30 |
| | | | | | | | | | | | | | | | | | | from ?iga Seilnacht (sorry about the name, but Firefox on my box can't display the first character of the name -- the SF "Unix name" is zseil). This appears to cure the oddball intermittent leaks across runs when running test_exceptions under -R. I'm not sure why, but I'm too sleepy to care ;-) The thrust of the SF patch was to remove randomness in the pickle protocol used. I changed the patch to use range(pickle.HIGHEST_PROTOCOL + 1), to try both pickle and cPickle, and randomly mucked with other test lines to put statements on their own lines. Not a bugfix candidate (this is fiddling new-in-2.5 code). | ||||
* | dash_R_cleanup(): Clear filecmp._cache. This accounts for | Tim Peters | 2006-06-07 | 1 | -1/+2 |
| | | | | | different results across -R runs (at least on Windows) of test_filecmp. |