- 24 Mar, 2004 1 kayıt (commit)
-
-
Nicholas Bastin yazdı
-
- 22 Mar, 2004 1 kayıt (commit)
-
-
Armin Rigo yazdı
-
- 10 Şub, 2004 1 kayıt (commit)
-
-
Skip Montanaro yazdı
-
- 01 Ara, 2003 1 kayıt (commit)
-
-
Tim Peters yazdı
comments about why both calls to cyclic gc here can cause problems. I'll backport to 2.3 maint. Since the calls were introduced in 2.3, that will be the end of it.
-
- 20 Kas, 2003 1 kayıt (commit)
-
-
Jack Jansen yazdı
-
- 19 Kas, 2003 1 kayıt (commit)
-
-
Jack Jansen yazdı
-
- 13 Kas, 2003 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 12 Eki, 2003 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
* Py_BuildValue("(OOO)",a,b,c) --> PyTuple_Pack(3,a,b,c) * Py_BuildValue("()",a) --> PyTuple_New(0) * Py_BuildValue("O", a) --> Py_INCREF(a)
-
- 11 Agu, 2003 1 kayıt (commit)
-
-
Michael W. Hudson yazdı
This should go onto release23-maint, too.
-
- 09 Agu, 2003 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
Verify that the encoding actually exists. Fixes #775985. Will backport to 2.3.
-
- 16 Tem, 2003 1 kayıt (commit)
-
-
Mark Hammond yazdı
sys.__modules__.
-
- 15 Tem, 2003 1 kayıt (commit)
-
-
Mark Hammond yazdı
If the initial import of warnings fails, clear the error. When the module is actually needed, if the original import failed, see if it has managed to find its way to sys.modules yet and if so, remember it.
-
- 22 Nis, 2003 1 kayıt (commit)
-
-
Mark Hammond yazdı
-
- 19 Nis, 2003 2 kayıt (commit)
-
-
Tim Peters yazdı
particular leaving the traceback object (and everything reachable from it) alive throughout shutdown. The patch is mostly from Guido. Bugfix candidate.
-
Mark Hammond yazdı
-
- 17 Nis, 2003 5 kayıt (commit)
-
-
Tim Peters yazdı
new line. New pvt API function _Py_PrintReferenceAddresses(): Prints only the addresses and refcnts of the live objects. This is always safe to call, because it has no dependence on Python's C API. Py_Finalize(): If envar PYTHONDUMPREFS is set, call (the new) _Py_PrintReferenceAddresses() right before dumping final pymalloc stats. We can't print the reprs of the objects here because too much of the interpreter has been shut down. You need to correlate the addresses displayed here with the object reprs printed by the earlier PYTHONDUMPREFS call to _Py_PrintReferences().
-
Guido van Rossum yazdı
- Call this in Py_Finalize(). - Expand the Misc/NEWS text on PY_LONG_LONG.
-
Guido van Rossum yazdı
wrapper around err_input().
-
Tim Peters yazdı
-
Tim Peters yazdı
PYTHONDUMPREFS output after most teardown. Attempts to use PYTHONDUMPREFS with the Zope3 test suite died with Py_FatalError(), since _Py_PrintReferences() can end up executing arbitrary Python code (for objects that override __repr__), and that requires an intact interpreter.
-
- 15 Nis, 2003 2 kayıt (commit)
-
-
Guido van Rossum yazdı
even farther down, to just before the call to _PyObject_DebugMallocStats(). This required the following changes: - pystate.c, PyThreadState_GetDict(): changed not to raise an exception or issue a fatal error when no current thread state is available, but simply return NULL without raising an exception (ever). - object.c, Py_ReprEnter(): when PyThreadState_GetDict() returns NULL, don't raise an exception but return 0. This means that when printing a container that's recursive, printing will go on and on and on. But that shouldn't happen in the case we care about (see first bullet). - Updated Misc/NEWS and Doc/api/init.tex to reflect changes to PyThreadState_GetDict() definition.
-
Guido van Rossum yazdı
prevents it from showing stuff (like codec state) that is cleared when the interpreter state is cleared.
-
- 10 Nis, 2003 1 kayıt (commit)
-
-
Neal Norwitz yazdı
-
- 19 Mar, 2003 1 kayıt (commit)
-
-
Gustavo Niemeyer yazdı
variables to store internal data. As a result, any atempts to use the unicode system with multiple active interpreters, or successive interpreter executions, would fail. Now that information is stored into members of the PyInterpreterState structure.
-
- 05 Mar, 2003 2 kayıt (commit)
-
-
Fred Drake yazdı
-
Martin v. Löwis yazdı
and not as a side effect of setlocale. Expose it as sys.getfilesystemencoding. Adjust test case.
-
- 25 Şub, 2003 1 kayıt (commit)
-
-
Just van Rossum yazdı
import warnings.py _after_ site.py has run. This ensures that site.py is again the first .py to be imported, giving it back full control over sys.path.
-
- 19 Şub, 2003 1 kayıt (commit)
-
-
Mark Hammond yazdı
-
- 13 Şub, 2003 1 kayıt (commit)
-
-
Guido van Rossum yazdı
with an indented code block but no newline would raise SyntaxError. This would have been a four-line change in parsetok.c... Except codeop.py depends on this behavior, so a compilation flag had to be invented that causes the tokenizer to revert to the old behavior; this required extra changes to 2 .h files, 2 .c files, and 2 .py files. (Fixes SF bug #501622.)
-
- 24 Ock, 2003 1 kayıt (commit)
-
-
Jack Jansen yazdı
MacPython-OS9 has had an abort() function for quite a while now, so there's no reason to stall in an endless loop, just call abort() on a fatal error.
-
- 22 Ock, 2003 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 31 Ara, 2002 1 kayıt (commit)
-
-
Neal Norwitz yazdı
-
- 30 Ara, 2002 2 kayıt (commit)
-
-
Neal Norwitz yazdı
Initialize the small integers and __builtins__ in startup. This removes some if conditions. Change XDECREF to DECREF for values which shouldn't be NULL.
-
Just van Rossum yazdı
- new import hooks in import.c, exposed in the sys module - new module called 'zipimport' - various changes to allow bootstrapping from zip files I hope I didn't break the Windows build (or anything else for that matter), but then again, it's been sitting on sf long enough... Regarding the latest discussions on python-dev: zipimport sets pkg.__path__ as specified in PEP 273, and likewise, sys.path item such as /path/to/Archive.zip/subdir/ are supported again.
-
- 13 Ara, 2002 1 kayıt (commit)
-
-
Jack Jansen yazdı
-
- 11 Ara, 2002 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 17 Kas, 2002 1 kayıt (commit)
-
-
Neil Schemenauer yazdı
Py_Init crash". refchain cannot be cleared because objects can live across Py_Finalize() and Py_Initialize() if they are kept alive by circular references.
-
- 17 Eki, 2002 1 kayıt (commit)
-
-
Fred Drake yazdı
set it. Closes SF issue #624729.
-
- 05 Eki, 2002 1 kayıt (commit)
-
-
Tim Peters yazdı
__STDC__ is defined (or something like that ...).
-
- 15 Agu, 2002 1 kayıt (commit)
-
-
Skip Montanaro yazdı
single-quoted strings or end-of-file in triple-quoted strings. closes patch 586561.
-