- 10 Mar, 2006 2 commits
-
-
Guido van Rossum authored
Anyway, this is the changes to the with-statement so that __exit__ must return a true value in order for a pending exception to be ignored. The PEP (343) is already updated.
-
Guido van Rossum authored
-
- 09 Mar, 2006 21 commits
-
-
Martin v. Löwis authored
-
Georg Brandl authored
-
Georg Brandl authored
interpreter to exit.
-
Tim Peters authored
happy with the output as-is. This incidentally also gets rid of "an extra" blank line at the end of the output block that probably wasn't intended (although it doesn't matter one way or the other).
-
Thomas Heller authored
-
Andrew M. Kuchling authored
-
Thomas Heller authored
Tools/scripts/svneol.py: added the .sln and .vcproj extensions because these are text files. Ran svneol.py over the source tree.
-
Thomas Heller authored
Settings for 64-bit Windows are missing. I've left in the 64-bit warnings to remind me to port ctypes to Py_ssize_t.
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
-
Georg Brandl authored
-
Georg Brandl authored
-
Thomas Heller authored
-
Thomas Heller authored
-
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 4 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
-