summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* _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
|
* Fix and test (manually w/xx module) passing NULLs to PyObject_Str() andNeal Norwitz2006-03-142-5/+21
| | | | | | | | | | | | | PyObject_Unicode(). This problem was originally reported from Coverity and addresses mail on python-dev "checkin r43015". This inlines the conversion of the string to unicode and cleans up/simplifies some code at the end of the PyObject_Unicode(). We really need a complete C API test module for all public APIs and passing good and bad parameter values. Will backport.
* Fix bug found by Coverity: don't allow NULL argument to PyUnicode_CheckExactGeorg Brandl2006-03-131-2/+2
|
* Added logThreads and logProcesses to allow conditional omission of logging ↵Vinay Sajip2006-03-131-2/+12
| | | | this information
* It's necessary to do a Debug build of the bsddb project too.Tim Peters2006-03-131-2/+6
|
* Minor changes.Tim Peters2006-03-131-5/+4
|
* Trimmed trailing whitespace.Tim Peters2006-03-131-2/+2
|
* Fix build process of bsddb for IA64 and AMD64.Martin v. Löwis2006-03-132-6/+11
| | | | Remove remarks on size_t problems.
* Initialize VS environment in external.bat as well.Martin v. Löwis2006-03-131-0/+1
|
* Update to bsddb 4.4.20.Martin v. Löwis2006-03-133-46/+39
|
* Fix SF bug #1448804 and ad a test to ensure that all subscript operations ↵Nick Coghlan2006-03-132-24/+101
| | | | continue to be handled correctly
* Let the buildbot make a single pass in the test suite only.Martin v. Löwis2006-03-132-1/+5
|
* Update to bzip2 1.0.3Martin v. Löwis2006-03-134-19/+26
| | | | Make buildbot slaves automatically fetch bzip2 1.0.3.
* Plug some refcount leaks when tests are run repeatedly.Thomas Heller2006-03-132-16/+21
|
* Bug #1448490: Fix a bug that ISO-2022 codecs could not handleHye-Shik Chang2006-03-133-1/+11
| | | | SS2 (single-shift 2) escape sequences correctly.
* Remove the slightly broken test_leaks.py.Thomas Heller2006-03-132-91/+4
| | | | | | | Change test_functions.py so that it can be run multiple time without failing: Assign a restype to the function in test_intresult, and move the definition of class POINT to module level so that no new class is created each time the test is run.
* Adding the /useenv means that one's PATH actually gets through. This isTrent Mick2006-03-121-1/+1
| | | | | | | | important for the _ssl.vproj build. It calls build_ssl.py which tries to find a Perl to use. Without "/useenv" Visual Studio is getting a PATH from somewhere else (presumably from its internal environment configuration). The result is that build_ssl.py fallsback to its "well-known" locations for a Perl install.
* merged with cElementTree development trunk (1.0.6 snapshot):Fredrik Lundh2006-03-121-32/+60
| | | | | | Fixed a number of potential null-pointer-reference-under-pressure glitches, based on input from the Coverity analysis tool and Simo Salminen.
* Move buildbot scripts to Tools/buildbot.Martin v. Löwis2006-03-123-0/+0
|
* Added brief comment.Tim Peters2006-03-121-2/+1
|
* Added brief comments.Tim Peters2006-03-122-2/+2
|
* - Reindent a confusingly indented piece of code (no intended code changesThomas Wouters2006-03-121-13/+16
| | | | | | | | | there) - Add missing DECREFs of inner-scope 'temp' variable - Add various missing DECREFs by changing 'return NULL' into 'goto onError' - Avoid double DECREF when last _PyUnicode_Resize() fails Coverity found one of the missing DECREFs, but oddly enough not the others.
* Plug the last 657 referenceleaks in test_bsddb3: a circular referenceThomas Wouters2006-03-121-0/+5
| | | | | | | between a TestCase instance, the database it opened (or a cursor to a database) and a bound method as a registered database callback, and a lack of GC-handling in bsddb caused the TestCases to linger. Fix the test, for now, as backward compatibility makes adding GC to bsddb annoying.
* Fix another leak in bsddb, and avoid use of uninitialized value -- funny howThomas Wouters2006-03-121-1/+2
| | | | gcc 4.0.x wasn't complaining about *that* one ;)
* Add buildbot test script.Martin v. Löwis2006-03-111-0/+4
|
* Give the _ssl project a harmless command to performTim Peters2006-03-111-0/+3
| | | | | | for its "clean" action. Else the clean step run by the buildbot reports failure, due to the _ssl project whining about not being able to spawn an empty string.
* Add changelog entry.Martin v. Löwis2006-03-111-0/+1
|
* Adjust CJK Ideograph range to Unicode 4.1.Martin v. Löwis2006-03-111-13/+12
|