- 03 Agu, 2004 14 kayıt (commit)
-
-
Anthony Baxter yazdı
-
Michael W. Hudson yazdı
-
Michael W. Hudson yazdı
-
Anthony Baxter yazdı
an initlog() (and initlog()'s docstring says "don't use this"!) This allows test_cgi to be run repeatedly in a single run of the interpreter.
-
Michael W. Hudson yazdı
way to guarantee a deadlock on the next call! If I've inadvertently done some damage to this test, sorry (but I don't think I have).
-
Michael W. Hudson yazdı
Hard to believe it ever helped anything, and it hurts finding reference leaks.
-
Michael W. Hudson yazdı
the case of __del__ resurrecting an object. This makes the apparent reference leaks in test_descr go away (which I expected) and also kills off those in test_gc (which is more surprising but less so once you actually think about it a bit).
-
Michael W. Hudson yazdı
-
Raymond Hettinger yazdı
-
Armin Rigo yazdı
-
Fred Drake yazdı
-
Raymond Hettinger yazdı
-
Mark Hammond yazdı
connect error
-
Brett Cannon yazdı
comma expression in listpop() that was being returned. Still essentially unused (as it is meant to be), but now the compiler thinks it is worth *something* by having it incremented.
-
- 02 Agu, 2004 26 kayıt (commit)
-
-
Fred Drake yazdı
-
Neal Norwitz yazdı
-
Fred Drake yazdı
-
Fred Drake yazdı
-
Fred Drake yazdı
- fix broken assert statement; should just raise
-
Andrew M. Kuchling yazdı
-
Michael W. Hudson yazdı
have differing refcount semantics. If anyone sees a prettier way to acheive the same ends, then please go for it. I think this is the first time I've ever used Py_XINCREF.
-
Andrew M. Kuchling yazdı
-
Michael W. Hudson yazdı
(or to whatever the 'insert' method chose to return).
-
Michael W. Hudson yazdı
-
Michael W. Hudson yazdı
must have annoyed me at some point.
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
-
Anthony Baxter yazdı
-
Anthony Baxter yazdı
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
* Fixes an incorrect variable in a PyDict_CheckExact. * Allow general mapping locals arguments for the execfile() function and exec statement. * Add tests.
-
Anthony Baxter yazdı
-
Anthony Baxter yazdı
"@ seems the syntax that everybody can hate equally" Implementation by Mark Russell, from SF #979728.
-
Tim Peters yazdı
-
Tim Peters yazdı
-
Tim Peters yazdı
after a failed import. This is the last checkin in the "change import failure semantics" series.
-
Tim Peters yazdı
test_failing_import_sticks -- if an import raises an exception, ensure that trying to import it again continues raising exceptions test_failing_reload -- if a module loads OK, but a reload raises an exception, ensure that the module is still in sys.modules, and that its __dict__ reflects as much of the reload attempt as succeeded. That doesn't seem like sane semantics, but it is backward-compatible semantics <wink>.
-
Tim Peters yazdı
getting left beyind in sys.modules.
-
Tim Peters yazdı
PyImport_ReloadModule(): restore the module to sys.modules in error cases. load_package(): semantic-neutral refactoring from an earlier stab at this patch; giving it a common error exit made the code easier to follow, so retaining that part. _RemoveModule(): new little utility to delete a key from sys.modules.
-
Tim Peters yazdı
-