- 23 Oct, 2001 2 commits
-
-
Neil Schemenauer authored
-
Tim Peters authored
-
- 22 Oct, 2001 25 commits
-
-
Jeremy Hylton authored
This should eliminate the traceback returned by sys.exc_info() as a common source of memory leaks.
-
Tim Peters authored
-
Fred Drake authored
used by the weakref code since he didn't like the word "referencable". Is it really necessary to be more specific than to test for TypeError here, though?
-
Fredrik Lundh authored
template string, and don't call the template compiler if we can avoid it.
-
Barry Warsaw authored
failobj has to be a list or the `+' can fail.
-
Tim Peters authored
-
Fred Drake authored
-
Jeremy Hylton authored
Don't put paren in column 0 (to please font-lock mode). Put space after comma in argument list.
-
Fred Drake authored
-
Andrew M. Kuchling authored
-
Jeremy Hylton authored
-
Jeremy Hylton authored
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
the curses module. It's not run automatically; '-u curses' must be specified as an argument to regrtest
-
Fred Drake authored
Mozilla 0.9.5 can make intelligent use of them. Specifically, this causes the "Acknowledgements" and "Global Module Index" pages to acquire "up" links in the Mozilla "Site Navigation Bar". This partially responds to SF bug #469772.
-
Fred Drake authored
differences by defining symbols not defined on particular platforms. This closes SF bug #473433.
-
Andrew M. Kuchling authored
\filename{} should be \file{}
-
Fredrik Lundh authored
(sorry, barry)
-
Guido van Rossum authored
response to a message by Laura Creighton on c.l.py. E.g. >>> 0+'' TypeError: unsupported operand types for +: 'int' and 'str' (previously this did not mention the operand types) >>> ''+0 TypeError: cannot concatenate 'str' and 'int' objects
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
-
Guido van Rossum authored
There really isn't a good reason for instance method objects to have their own __dict__, __doc__ and __name__ properties that just delegate the request to the function (callable); the default attribute behavior already does this. The test suite had to be fixed because the error changes from TypeError to AttributeError.
-
Andrew M. Kuchling authored
-
Guido van Rossum authored
(formerly these were silently ignored). The only built-in methods that take keyword arguments are __call__, __init__ and __new__.
-
Guido van Rossum authored
checking in changes. The test suite requires consistent use of spaces and tabs.)
-
- 21 Oct, 2001 11 commits
-
-
Piers Lauder authored
-
Neil Schemenauer authored
This fixes SF bug: [ #473491 ] "install -d" doesn't work on HP-UX.
-
Neil Schemenauer authored
-
Neil Schemenauer authored
-
Neil Schemenauer authored
#230075 ] dbmmodule build fails on Debian GNU/Linux unstable (Sid)". - Build bsddb module with libdb3 if it's available. It also fixes a bug that causes the build of bsddb to fail on Debian if bsddb3-dev is installed.
-
Fredrik Lundh authored
strings, not C strings) removed USE_PYTHON defines, and related sre.py helpers skip calling the subx helper if the template is callable. interestingly enough, this means that def callback(m): return literal result = pattern.sub(callback, string) is much faster than result = pattern.sub(literal, string)
-
Piers Lauder authored
-
Fredrik Lundh authored
check to the test suite. added a few missing exception checks in the _sre module
-
Fredrik Lundh authored
removed (conceptually flawed) getliteral helper; the new sub/subn code uses a faster code path for literal replacement strings, but doesn't (yet) look for literal patterns. added STATE_OFFSET macro, and use it to convert state.start/ptr to char indexes
-
Martin v. Löwis authored
Do not set the Expat handlers if it is. Fixes PyXML bug #473195.
-
Guido van Rossum authored
'slotdef' structure typedef and 'struct wrapperbase'. By adding the wrapper docstrings to the slotdef structure, the slotdefs array can serve as the data structure that drives add_operators(); the wrapper descriptor contains a pointer to slotdef structure. This replaces lots of custom code from add_operators() by a loop over the slotdefs array, and does away with all the tab_xxx tables.
-
- 20 Oct, 2001 2 commits
-
-
Fredrik Lundh authored
also restored SRE Unicode support for 1.6/2.0/2.1
-
Andrew M. Kuchling authored
-