summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
...
* Kill reduce(). A coproduction of John Reese, Jacques Frechet, and Alex M.Guido van Rossum2006-08-221-75/+0
* Merge current trunk into p3yk. This includes the PyNumber_Index API change,Thomas Wouters2006-08-2110-638/+693
* Get rid of most of the rest of coerce (slot is still there for now).Neal Norwitz2006-08-211-25/+0
* Completely get rid of PyClass and PyInstance.Guido van Rossum2006-08-172-13/+6
* Merged revisions 46753-51188 via svnmerge fromThomas Wouters2006-08-1123-210/+802
* Get rid of most of the flags (in tp_flags) that keep track of variousGuido van Rossum2006-07-272-7/+3
* Merge the rest of the trunk.Thomas Wouters2006-06-086-38/+94
* Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svnThomas Wouters2006-06-087-31/+55
* Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk.Thomas Wouters2006-05-2716-2199/+407
* Here is a bytes type. It's very minimal but it's a start.Guido van Rossum2006-04-221-0/+1
* Commit regenerated Python-ast.c.Thomas Wouters2006-04-211-1/+1
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-2126-663/+907
* Merge part of the trunk changes into the p3yk branch. This merges from 43030Thomas Wouters2006-04-211-0/+50
* Fix (and add test for) missing check for BaseException subclasses in the CThomas Wouters2006-04-201-0/+9
* INPLACE_DIVIDE is no longer necessary (INPLACE_TRUE_DIVIDE is used).Neal Norwitz2006-03-171-1/+0
* _Py_QnewFlag and INPLACE_DIVIDE are not necessary any longerNeal Norwitz2006-03-172-17/+0
* Remove apply()Neal Norwitz2006-03-171-45/+0
* Whoops, input *and* raw_input are slated for removal, and now both are gone.Neal Norwitz2006-03-171-86/+0
* raw_input() -> input(). old input behavior is history (and test_builtin pass...Neal Norwitz2006-03-171-110/+72
* Remove sys.exc_type, sys.exc_value, sys.exc_tracebackNeal Norwitz2006-03-171-4/+0
* Get rid of last vestiges of BINARY_DIVIDE.Neal Norwitz2006-03-162-19/+0
* Checkpoint. 218 tests are okay; 53 are failing. Done so far:Guido van Rossum2006-03-158-57/+30
* Fix SF bug #1448804 and ad a test to ensure that all subscript operations con...Nick Coghlan2006-03-131-24/+29
* Um, I thought I'd already checked this in.Guido van Rossum2006-03-103-25/+27
* Try to be a bit more consistent on all platforms:Neal Norwitz2006-03-091-1/+4
* Checking in the code for PEP 357.Guido van Rossum2006-03-071-46/+22
* Address an coverity issue. Coverity was complaining about a line that's fine,Guido van Rossum2006-03-071-1/+2
* SF #1444030: Fix several potential defects found by Coverity.Hye-Shik Chang2006-03-073-2/+11
* Change int to Py_ssize_t in several places.Martin v. Löwis2006-03-075-18/+34
* Fix warnings on x86 (32-bit).Neal Norwitz2006-03-061-1/+2
* Try to cleanup the error handling a bit so there aren't false positivesNeal Norwitz2006-03-061-8/+12
* Use %Id for size_t-ish things on Win64.Martin v. Löwis2006-03-051-1/+1
* Use Py_ssize_t for _Py_RefTotal.Neal Norwitz2006-03-042-7/+13
* TabifyNeal Norwitz2006-03-041-34/+34
* Get rid of run_err_mod(). It was only used in two places.Neal Norwitz2006-03-041-14/+4
* SF bug 1442442: LIST_APPEND optimization got lost in the AST merge.Neal Norwitz2006-03-031-3/+4
* Remove commented codeNeal Norwitz2006-03-031-24/+1
* Text moved to PEP 339.Brett Cannon2006-03-021-507/+0
* Fix minor docstring typo.Brett Cannon2006-03-021-1/+1
* Document the purpose of the struct _block members.Tim Peters2006-03-021-1/+18
* Added words about what PyArena_Malloc() does.Tim Peters2006-03-021-1/+1
* Trimmed trailing whitespace.Tim Peters2006-03-021-6/+6
* Fix refleak in PyErr_Display().Brett Cannon2006-03-021-15/+14
* Fix refleak if from __future__ import was not firstNeal Norwitz2006-03-021-0/+1
* Use Py_ssize_t since we are working with list size belowNeal Norwitz2006-03-021-1/+1
* Add a missing Py_DECREF to BaseException__unicode__ .Brett Cannon2006-03-021-2/+8
* Update known issues to reflect realityNeal Norwitz2006-03-021-4/+1
* Fix memory leak on attributes.Martin v. Löwis2006-03-021-5/+13
* Make Py_ssize_t clean.Thomas Wouters2006-03-011-1/+3
* Patch #1440601: Add col_offset attribute to AST nodes.Martin v. Löwis2006-03-013-134/+211