- 09 Mar, 2006 7 commits
-
-
Neal Norwitz authored
python . python < . both print a message, return non-zero and do not core dump.
-
Martin v. Löwis authored
-
Tim Peters authored
it found a bunch more in need of svn:eol-style.
-
Tim Peters authored
SVN control. Like reindent.py, I expect to run this mindlessly from time to time, checking in whatever it happens to do ;-)
-
Martin v. Löwis authored
-
Tim Peters authored
-
Tim Peters authored
-
- 08 Mar, 2006 13 commits
-
-
Hye-Shik Chang authored
-
Georg Brandl authored
-
Thomas Heller authored
-
Thomas Heller authored
-
Thomas Heller authored
Based on a patch from Hye-Shik Chang.
-
Thomas Heller authored
-
Georg Brandl authored
no "doc" argument given. This makes it possible to legitimately use property() as a decorator to produce a read-only property.
-
Georg Brandl authored
-
Georg Brandl authored
module.
-
Neal Norwitz authored
-
Neal Norwitz authored
-
Andrew M. Kuchling authored
-
Thomas Wouters authored
missing PyObject_Del()'s, simplify some code by using Py_BuildValue() instead of creating a tuple with items manually, stop clobbering builtin exceptions in a few places, and guard against NULL-returning functions some more. This fixes 117 of the 780 (!?!#%@#$!!) reference leaks in test_bsddb3. I ain't not done yet, although this review of 5kloc was just the easy part.
-
- 07 Mar, 2006 20 commits
-
-
Martin v. Löwis authored
-
Tim Peters authored
an error code, this let `self` leak. This is a disaster on Windows, since `self` already points to a newly-opened file object, and it was impossible for Python code to close the thing since the only reference to it was in a blob of leaked C memory. test_hotshot test_bad_sys_path(): This new test provoked the C bug above. This test passed, but left an open "@test" file behind, which caused a massive cascade of bogus test failures in later, unrelated tests on Windows. Changed the test code to remove the @test file it leaves behind, which relies on the change above to close that file first.
-
Georg Brandl authored
-
Andrew M. Kuchling authored
-
Guido van Rossum authored
-
Guido van Rossum authored
This was mostly written by Travis Oliphant. I've inspected it all; Neal Norwitz and MvL have also looked at it (in an earlier incarnation).
-
Guido van Rossum authored
but an earlier line checked for v != NULL unnecessarily.
-
Andrew M. Kuchling authored
-
Hye-Shik Chang authored
(reviewed by Neal Norwitz)
-
Georg Brandl authored
Normalize coding style.
-
Thomas Wouters authored
-
Thomas Wouters authored
Will backport.
-
Thomas Wouters authored
Will backport to release24.
-
Georg Brandl authored
-
Thomas Wouters authored
return rather than use it again.
-
Georg Brandl authored
readdir().
-
Martin v. Löwis authored
Add (int) casts to silence compiler warnings. Raise Python exceptions for overflows.
-
Thomas Wouters authored
-
Barry Warsaw authored
added to gc.collect(). Updated docs, unit test, and NEWS entry. (Also, fixed a typo in NEWS.)
-
Neal Norwitz authored
-