- 16 Apr, 2003 3 commits
-
-
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 12 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
-
Guido van Rossum authored
interpreted by slicing, so negative values count from the end of the list. This was the only place where such an interpretation was not placed on a list index.
-
Andrew M. Kuchling authored
-
Guido van Rossum authored
unexpected type, report the actual type rather than 'float'. (It's hard to even reach this code with a float. :-)
-
Guido van Rossum authored
A small fix for bug #545855 and Greg Chapman's addition of op code SRE_OP_MIN_REPEAT_ONE for eliminating recursion on simple uses of pattern '*?' on a long string.
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
-
Jason Tishler authored
After some more reflection (and no negative feedback), I am reverting the original patch and applying my version, cygwinccompiler.py-shared.diff, instead. My reasons are the following: 1. support for older toolchains is retained 2. support for new toolchains (i.e., ld -shared) is added The goal of my approach is to avoid breaking older toolchains while adding better support for newer ones.
-
Jeremy Hylton authored
Fix memory leak in dialect_init().
-
Neal Norwitz authored
-
- 13 Apr, 2003 4 commits
-
-
Tim Peters authored
the code erroneously decrefed the istep argument in an error case. This caused a co_consts tuple to lose a float constant prematurely, which eventually caused gc to try executing static data in floatobject.c (don't ask <wink>). So reworked this extensively to ensure refcount correctness.
-
Andrew M. Kuchling authored
Fix error in description of logging package's 'propagate' Mention default arg to dict.pop() Link to more module docs (I wonder if I should adopt some convention such as linking the first mention of all new modules to the LibRef?) Various text changes Bump version number and Python version
-
Andrew M. Kuchling authored
-
Tim Peters authored
-
- 12 Apr, 2003 4 commits
-
-
Jack Jansen authored
to lookup properties declared in base classes. Looking at it I'm not sure what the official scope if the property codes is, maybe it is only the (OSA) class in which they are used. But giving them global scope hasn't been a problem so far. Regenerated the standard suites, which are now also space-indented.
-
Skip Montanaro authored
(thanks to Neal Norwitz for the code review, BTW)
-
Skip Montanaro authored
make csv_{get,unregister}_dialect METH_O functions to avoid PyArg_ParseTuple
-
Skip Montanaro authored
conditionally exclude Unicode functions
-
- 11 Apr, 2003 1 commit
-
-
Skip Montanaro authored
-