summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Collapse)AuthorAgeFilesLines
...
* Add Jeff RushAndrew M. Kuchling2008-03-191-0/+2
|
* Backport of the print function, using a __future__ import.Eric Smith2008-03-182-0/+4
| | | | | | | | This work is substantially Anthony Baxter's, from issue 1633807. I just freshened it, made a few minor tweaks, and added the test cases. I also created issue 2412, which is to check for 2to3's behavior with the print function. I also added myself to ACKS.
* news entry for the chown fixGregory P. Smith2008-03-181-0/+3
|
* Issue 1577: shutil.move() where destination is a directory was doing aSean Reifscheider2008-03-181-0/+3
| | | | copy, now it is doing a os.rename() if it's on the same file-system.
* Issue 2332: add new attribute names for instance method objectsNeal Norwitz2008-03-181-0/+3
|
* - Issue 2379: Raise a Py3K warning for __getitem__ or __getslice__ onGuido van Rossum2008-03-181-0/+3
| | | | exception instances.
* Issue #2341: Add a Py3k warning when raising an exception that doesn'tGuido van Rossum2008-03-181-1/+2
| | | | derive from BaseException.
* The output directory for tests that compare against stdout is now gone!Brett Cannon2008-03-181-0/+2
|
* Remove our implementation of memmove() and strerror(); both are in the C89Brett Cannon2008-03-181-0/+3
| | | | standard library.
* test_errno was a no-op test; now it actually tests things and uses unittest.Brett Cannon2008-03-181-0/+2
|
* - Issue #2371: Add a Py3k warning when catching an exception thatGuido van Rossum2008-03-182-0/+4
| | | | doesn't derive from BaseException.
* Move test_extcall to doctest.Brett Cannon2008-03-181-0/+2
|
* Convert test_dummy_threading and test_dbm to unittest.Brett Cannon2008-03-181-0/+2
|
* Convert test_strftime, test_getargs, and test_pep247 to use unittest.Brett Cannon2008-03-181-0/+2
|
* Add David Wolever.Martin v. Löwis2008-03-171-0/+3
|
* Issue 2321: reduce memory usage (increase the memory that is returnedNeal Norwitz2008-03-171-0/+3
| | | | | | to the system) by using pymalloc for the data of unicode objects. Will backport.
* Added PEP 3127 support to tokenize (with tests); added PEP 3127 to NEWS.Eric Smith2008-03-171-0/+4
|
* Force zlib.crc32 and zlib.adler32 to return a signed integer on all platformsGregory P. Smith2008-03-171-0/+4
| | | | | | | | | regardless of the native sizeof(long) used in the integer object. This somewhat odd behavior of returning a signed is maintained in 2.x for compatibility reasons of always returning an integer rather than a long object. Fixes Issue1202 for Python 2.6
* Add Trent Nelson.Martin v. Löwis2008-03-171-0/+3
|
* Allow Gnu gcc's to build python on OSX by removing -Wno-long-double,Jeffrey Yasskin2008-03-171-0/+4
| | | | | | | | | | | | | | -no-cpp-precomp, and -mno-fused-madd from configure. * r22183 added -no-cpp-precomp, which http://gcc.gnu.org/ml/gcc/2005-12/msg00368.html claims hasn't been needed since gcc-3.1. * r25607 added -Wno-long-double to avoid a warning in Include/objimpl.h (issue 525481). The long double is still there, but OSX 10.4's gcc no longer warns about it. * r33666 fixed issue 775892 on OSX 10.3 by adding -mno-fused-madd, which changed the sign of some float 0s. Tim Peters said it wasn't a real issue anyway, and it no longer causes test failures. Fixes issue #1779871.
* Add a warning for code like:Neal Norwitz2008-03-151-0/+2
| | | | | | | | | | assert (0, 'message') An empty tuple does not create a warning. While questionable usage: assert (), 'message' should not display a warning. Tested manually. The warning message could be improved. Feel free to update it.
* .Skip Montanaro2008-03-151-0/+4
|
* Issue 705836: Fix struct.pack(">f", 1e40) to behave consistentlyMark Dickinson2008-03-141-0/+4
| | | | | | | | | | across platforms: it should now raise OverflowError on all platforms. (Previously it raised OverflowError only on non IEEE 754 platforms.) Also fix the (already existing) test for this behaviour so that it actually raises TestFailed instead of just referencing it.
* Patch #2284: add -x64 option to rt.bat.Martin v. Löwis2008-03-141-0/+4
|
* Convert test_fcntl to unittest.Brett Cannon2008-03-131-0/+2
| | | | Closes issue #2055. Thanks Giampaolo Rodola.
* Move test_gdbm to use unittest.Brett Cannon2008-03-132-0/+3
| | | | Closes issue #1960. Thanks Giampaolo Rodola.
* Convert test_contains, test_crypt, and test_select to unittest.Brett Cannon2008-03-132-0/+3
| | | | Patch from GHOP 294 by David Marek.
* Move test_tokenize to doctest.Brett Cannon2008-03-132-0/+3
| | | | Done as GHOP 238 by Josip Dzolonga.
* Move test_thread over to unittest. Commits GHOP 237.Brett Cannon2008-03-131-0/+2
| | | | Thanks Benjamin Peterson for the patch.
* Issue 2274: Add heapq.heappushpop().Raymond Hettinger2008-03-131-0/+2
|
* Issue 1106316. post_mortem()'s parameter, traceback, is nowFacundo Batista2008-03-081-0/+5
| | | | | optional: it defaults to the traceback of the exception that is currently being handled.
* Speed up with statements by storing the __exit__ method on the stack instead ↵Nick Coghlan2008-03-071-0/+3
| | | | of in a temp variable (bumps the magic number for pyc files)
* Progress on issue #1193577 by adding a polling .shutdown() method toJeffrey Yasskin2008-03-071-0/+3
| | | | | | SocketServers. The core of the patch was written by Pedro Werneck, but any bugs are mine. I've also rearranged the code for timeouts in order to avoid interfering with the shutdown poll.
* Bug #2220: handle rlcompleter attribute match failure more gracefully.Georg Brandl2008-03-061-0/+2
|
* #2225: return nonzero status code from py_compile if not all files could be ↵Georg Brandl2008-03-061-0/+3
| | | | compiled.
* Add missing NEWS entry for r61263.Georg Brandl2008-03-061-0/+3
|
* Patch #2232: os.tmpfile might fail on Windows if the user has noMartin v. Löwis2008-03-061-0/+6
| | | | | permission to create files in the root directory. Will backport to 2.5.
* C implementation of itertools.permutations().Raymond Hettinger2008-03-051-1/+1
|
* Issue 1872: Changed the struct module typecode from 't' to '?', forThomas Heller2008-03-051-0/+3
| | | | compatibility with PEP3118.
* News entry for yesterdays commit.Thomas Heller2008-03-051-0/+10
|
* test_smtplib sometimes reports leaks too, suppress itNeal Norwitz2008-03-051-1/+1
|
* Use -u urlfetch to run more testsNeal Norwitz2008-03-051-3/+3
|
* Tabs -> spacesNeal Norwitz2008-03-051-13/+13
|
* Issue#2238: some syntax errors from *args or **kwargs expressionsAmaury Forgeot d'Arc2008-03-051-0/+6
| | | | | | | | | | | | | | would give bogus error messages, because of untested exceptions:: >>> f(**g(1=2)) XXX undetected error Traceback (most recent call last): File "<stdin>", line 1, in <module> TypeError: 'int' object is not iterable instead of the expected SyntaxError: keyword can't be an expression Will backport.
* Typo fixAndrew M. Kuchling2008-03-041-1/+1
|
* Typo fixAndrew M. Kuchling2008-03-041-1/+1
|
* Since abc._Abstract was replaces by a new type flags the regression test ↵Christian Heimes2008-03-031-0/+2
| | | | suite fails. I've added a new function inspect.isabstract(). Is the mmethod fine or should I check if object is a instance of type or subclass of object, too?
* Refactor test_logging to use unittest. This should finally solve the flakinessBrett Cannon2008-03-032-1/+2
| | | | | | issues. Thanks to Antoine Pitrou for the patch.
* Added note about update of sqlite3 module.Gerhard Häring2008-03-021-0/+2
|
* Set things up for 2.6a2.Barry Warsaw2008-03-011-0/+6
|