summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* Merge trunk up to 43069, putting re.py back and hopefully making the branchThomas Wouters2006-04-214-4/+3
* Merge trunk's 43068, deleting re.py. This leaves the branch in a brokenThomas Wouters2006-04-211-6/+0
* Merge part of the trunk changes into the p3yk branch. This merges from 43030Thomas Wouters2006-04-21100-403/+2509
* Fix the problems in this test. Boy this is a painful thing to debug --Guido van Rossum2006-04-211-1/+3
* Fix (and add test for) missing check for BaseException subclasses in the CThomas Wouters2006-04-201-1/+19
* Fix typical truedivision problem (using the result of division as an index.)Thomas Wouters2006-04-201-2/+2
* Fix test failures for repr.py.Guido van Rossum2006-04-202-16/+10
* Use explicit relative import for an, ehm, relative import.Thomas Wouters2006-04-181-1/+1
* Fix the expected output file; new classes just behave differently...Guido van Rossum2006-04-171-39/+5
* Fix two errors that prevented "make libinstall" from working:Guido van Rossum2006-04-172-3/+3
* Fix xrange tests now that xrange() (like many other places) no longerThomas Wouters2006-04-171-1/+4
* Make test_class work (but still fail) even though class.__dict__ is now aThomas Wouters2006-04-151-2/+5
* Adjust test_enumerate to accomodate for iter() blowing up sooner thanThomas Wouters2006-04-151-1/+1
* Fix tests for PyArg_Parse*; The PyArg_Parse functions no longer (noisily)Thomas Wouters2006-04-151-6/+6
* - Remove tests for classic class behaviourThomas Wouters2006-04-151-77/+7
* Fix test_bisect in the same way as test_itertools: iter() blows up a lotThomas Wouters2006-04-151-2/+2
* Fix the superficial augmented-assignment tests to deal with true division.Thomas Wouters2006-04-152-10/+22
* Fix tests that were trying to make iteration blow up, on broken iterators.Thomas Wouters2006-04-151-12/+12
* Remove tests for classic-class and mixed-classic-class/new-style behaviour.Thomas Wouters2006-04-151-146/+2
* - Fix doctest results to account for classes being new-style, and thusThomas Wouters2006-04-151-9/+9
* Use absolute import. (Should this go into 2.5?)Neal Norwitz2006-03-241-1/+1
* Get rid of remnants of integer divisionNeal Norwitz2006-03-249-74/+29
* String exceptions are gone and so are classic classes.Neal Norwitz2006-03-241-40/+0
* Use *absolute* imports now that they are required. (Should this go into 2.5?)Neal Norwitz2006-03-241-1/+1
* Must inherit from Exception now.Neal Norwitz2006-03-241-1/+1
* Use *absolute* imports now that they are required. (Should this go into 2.5?)Neal Norwitz2006-03-243-9/+9
* Use *absolute* import now that it is required. (Should this go into 2.5? Ho...Neal Norwitz2006-03-241-1/+1
* Use relative import now that it is required. (Should this go into 2.5?)Neal Norwitz2006-03-241-1/+1
* Use relative import now that it is required. (Should this go into 2.5?)Neal Norwitz2006-03-241-1/+1
* Ok, compiler.transformer can really be imported nowNeal Norwitz2006-03-243-6/+6
* Must inherit from Exception now.Neal Norwitz2006-03-241-2/+2
* Use relative import now that it is required. (Should this go into 2.5?)Neal Norwitz2006-03-241-1/+2
* Use relative imports in compiler package now that it is required. (Should th...Neal Norwitz2006-03-241-3/+3
* Remove another use of as as a keywordNeal Norwitz2006-03-221-5/+5
* Get doctest to pass. The problem was int/int -> float now. ThereNeal Norwitz2006-03-221-11/+11
* Damn another occurrence of using as as a keywordfNeal Norwitz2006-03-221-2/+2
* INPLACE_DIVIDE is no longer necessary (INPLACE_TRUE_DIVIDE is used).Neal Norwitz2006-03-172-2/+2
* as is a keyword now :-)Neal Norwitz2006-03-171-7/+7
* Get rid of xreadlines() (methods).Neal Norwitz2006-03-174-12/+4
* More apply() cleanupNeal Norwitz2006-03-172-12/+9
* Remove apply()Neal Norwitz2006-03-1719-149/+116
* Get rid of a bunch more raw_input referencesNeal Norwitz2006-03-1712-23/+43
* Whoops, input *and* raw_input are slated for removal, and now both are gone.Neal Norwitz2006-03-171-31/+0
* raw_input() -> input(). old input behavior is history (and test_builtin pass...Neal Norwitz2006-03-171-22/+9
* Remove sys.exc_type, sys.exc_value, sys.exc_tracebackNeal Norwitz2006-03-174-8/+6
* Get rid of last vestiges of BINARY_DIVIDE.Neal Norwitz2006-03-162-4/+2
* Checkpoint. 218 tests are okay; 53 are failing. Done so far:Guido van Rossum2006-03-154-11/+7
* Teach the compiler module about augmented assignment to tuple subscriptsNick Coghlan2006-03-141-4/+2
* Added logThreads and logProcesses to allow conditional omission of logging th...Vinay Sajip2006-03-131-2/+12
* Fix SF bug #1448804 and ad a test to ensure that all subscript operations con...Nick Coghlan2006-03-131-0/+72