summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* 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? ↵Neal Norwitz2006-03-241-1/+1
| | | | Hopefully not the bogus comment about using relative imports. That was just to see if anyone was paying attention.)
* 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 ↵Neal Norwitz2006-03-241-3/+3
| | | | this go into 2.5 or should we do compiler.XXX?)
* Remove another use of as as a keywordNeal Norwitz2006-03-221-5/+5
|
* Finish getting rid of statichere/staticforwardNeal Norwitz2006-03-228-25/+25
|
* Get doctest to pass. The problem was int/int -> float now. ThereNeal Norwitz2006-03-221-11/+11
| | | | | | | | | | were some cases where an int was assumed. Also had to change the string of the exception when dividing and int by zero. Not sure what the best error message should be. Currently 5 / 0 yields the message: ZeroDivisionError: float division That isn't entirely correct. But I'm not sure what else to do.
* Remove staticforward and statichereNeal Norwitz2006-03-223-18/+5
|
* Damn another occurrence of using as as a keywordfNeal Norwitz2006-03-221-2/+2
|
* remove test fileBarry Warsaw2006-03-211-1/+0
|
* testing svn emailsBarry Warsaw2006-03-211-1/+1
|
* testing svn emailsBarry Warsaw2006-03-211-1/+1
|
* testing svn emailsBarry Warsaw2006-03-211-1/+1
|
* testing svn emailsBarry Warsaw2006-03-211-1/+1
|
* testing svn emailsBarry Warsaw2006-03-211-1/+1
|
* testing svn emailsBarry Warsaw2006-03-211-1/+1
|
* testing svn emailsBarry Warsaw2006-03-211-0/+1
|
* Some more TODO items of things I'd like to start with.Guido van Rossum2006-03-201-1/+17
| | | | Mention the builtins that Neal killed.
* Remove PyArg_NoArgs() and PyArg_GetInt()Neal Norwitz2006-03-173-11/+2
|
* INPLACE_DIVIDE is no longer necessary (INPLACE_TRUE_DIVIDE is used).Neal Norwitz2006-03-175-9/+3
|
* _Py_QnewFlag and INPLACE_DIVIDE are not necessary any longerNeal Norwitz2006-03-173-21/+0
|
* as is a keyword now :-)Neal Norwitz2006-03-171-7/+7
|
* Get rid of xreadlines() (methods).Neal Norwitz2006-03-1711-47/+9
|
* More apply() cleanupNeal Norwitz2006-03-172-12/+9
|
* This gets at least test_cmd_line working again and a few more modules built.Neal Norwitz2006-03-171-1/+1
|
* Remove some old types for int based functions (Py_ssize_t is da thing now.)Neal Norwitz2006-03-171-9/+0
|
* Remove apply()Neal Norwitz2006-03-171-6/+3
|
* Remove apply()Neal Norwitz2006-03-1756-285/+179
|
* Whitespace changes. Also remove apply from a few commentsNeal Norwitz2006-03-171-87/+21
|
* Get rid of a bunch more raw_input referencesNeal Norwitz2006-03-1742-144/+222
|
* Whoops, input *and* raw_input are slated for removal, and now both are gone.Neal Norwitz2006-03-172-117/+0
|
* raw_input() -> input(). old input behavior is history (and test_builtin ↵Neal Norwitz2006-03-172-132/+81
| | | | passes again). It was failing due to future division.
* Remove sys.exc_type, sys.exc_value, sys.exc_tracebackNeal Norwitz2006-03-1716-58/+36
|
* Get rid of compiler warningNeal Norwitz2006-03-171-1/+1
|
* Get rid of last vestiges of BINARY_DIVIDE.Neal Norwitz2006-03-166-29/+3
|
* Get rid of compiler warning about with_msg and as_msg being unusedNeal Norwitz2006-03-161-0/+2
|
* Checkpoint. 218 tests are okay; 53 are failing. Done so far:Guido van Rossum2006-03-1524-6360/+82
| | | | | | | | - all classes are new-style (but ripping out classobject.[ch] isn't done) - int/int -> float - all exceptions must derive from BaseException - absolute import - 'as' and 'with' are keywords
* Create a Python 3000 branch.Guido van Rossum2006-03-140-0/+0
|
* Try to avoid many of the compiler warnings when compiling libffi byThomas Heller2006-03-141-3/+3
| | | | using a proper function prototype.
* Cast an Py_ssize_t to int, to avoid a compiler warning.Thomas Heller2006-03-141-2/+2
|
* For x86 Release and Debug builds, remove the /Wp64 compiler flag, itThomas Heller2006-03-141-2/+2
| | | | is responsible for most (all?) of the warnings we get.
* Integrate patch from Neal Norwitz. He writes:Thomas Heller2006-03-143-56/+60
| | | | | | | | | | | | | | | | | | """ The attached patch fixes all the ctypes tests so they pass on amd64. It also fixes several warnings. I'm not sure what else to do with the patch. Let me know how you want to handle these in the future. I'm not sure the patch is 100% correct. You will need to decide what can be 64 bits and what can't. I believe sq_{item,slice,ass_item,ass_slice} all need to use Py_ssize_t. The types in ctypes.h may not require all the changes I made. I don't know how you want to support older version, so I unconditionally changed the types to Py_ssize_t. """ The patch is also in the ctypes SVN repository now, after small changes to add compatibility with older Python versions.
* Teach the compiler module about augmented assignment to tuple subscriptsNick Coghlan2006-03-141-4/+2
|