- 17 Apr, 2003 3 commits
-
-
Tim Peters authored
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.
-
Guido van Rossum authored
work. This includes some more code that used to be part of pgen in the main parser; I'm okay with that. I'll see if the Windows build needs work next.
-
Neal Norwitz authored
-
- 16 Apr, 2003 18 commits
-
-
Guido van Rossum authored
the referenced object, if it has one. Also use %p to format pointers consistently, and use <weakproxy ...> in proxy_repr(), to match the type name.
-
Martin v. Löwis authored
-
Guido van Rossum authored
standard class (it is now useful because it doesn't constrain the type of the value).
-
Guido van Rossum authored
the thread started at http://mail.python.org/pipermail/python-dev/2003-April/034338.html
-
Guido van Rossum authored
checkin. :-(
-
Martin v. Löwis authored
type bool. Requested in #721171.
-
Guido van Rossum authored
the thread started at http://mail.python.org/pipermail/python-dev/2003-April/034338.html
-
Raymond Hettinger authored
-
Barry Warsaw authored
etc. Fixed one typo in the __main__ section.
-
Raymond Hettinger authored
PyObject_IsTrue() can have an error result. Also, added missing docs for PyObject_Not(). Will backport.
-
Neal Norwitz authored
-
Jack Jansen authored
~/Library/Python/2.3/site-packages to sys.path, if it exists.
-
Jack Jansen authored
-
Jack Jansen authored
-
Jack Jansen authored
-
Jack Jansen authored
Don't show psuedo-packages by default, added a button to show them. Cleaned up interface a little (not enough, though).
-
Jack Jansen authored
Changed some message to be clearer when presented by Package Manager.
-
Walter Dörwald authored
HTML entity names to Unicode codepoints (as integers). codepoint2name is the reverse mapping. From SF patch #722017.
-
- 15 Apr, 2003 16 commits
-
-
Guido van Rossum authored
-
Jack Jansen authored
-
Jack Jansen authored
-
Martin v. Löwis authored
Also move complete processing of get/set/delvar calls to target thread.
-
Guido van Rossum authored
-
Walter Dörwald authored
-
Walter Dörwald authored
-
Walter Dörwald authored
for the same gid.
-
Walter Dörwald authored
for the same uid.
-
Guido van Rossum authored
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.
-
Jack Jansen authored
- Allow setting the destination install directory. If this is set then it is used for the modules, other items (header files, etc) are not installed, and warnings are printed if the package would have liked to. Unfortunaltey binary installs seem broken due to a tarfile bug (#721871) or my misunderstanding of how tarfile works.
-
Tim Peters authored
cases, but the test still expected ValueError. Repaired that.
-
Guido van Rossum authored
prevents it from showing stuff (like codec state) that is cleared when the interpreter state is cleared.
-
Guido van Rossum authored
-
Walter Dörwald authored
getpwnam()/getpwuid() return consistent data. Change test_grp to check that getgrall() and getgrnam()/getgrgid() return consistent data. Add error checks similar to test_pwd.py. Port test___all__.py to PyUnit. From SF patch #662807.
-
Raymond Hettinger authored
to cover the case for: "x,y,z=1,2,3". Gives a 30% speed-up. Also, added FOR_ITER to the list of opcodes that can jump.
-
- 14 Apr, 2003 3 commits
-
-
Guido van Rossum authored
(This is only the tip of the iceberg; the time and datetime classes need the same treatment.)
-
Guido van Rossum authored
-
Guido van Rossum authored
-