- 13 Apr, 2001 40 commits
-
-
Fred Drake authored
Update docs for PyDict_Next() based on the most recent changes to the dictionary code. This closes SF patch #409864.
-
Guido van Rossum authored
problem reported by Neil Schemenauer on python-dev on 4/12/01, wth subject "Problem with SSL and socketmodule on Debian Potato?". It's tentative because Moshe objected, but Martin rebutted, and Moshe seems unavailable for comments. (Note that with OpenSSL 0.9.6a, I get a lot of compilation warnings for socketmodule.c -- I'm assuming I can safely ignore these until 2.1 is released.)
-
Jeremy Hylton authored
-
Fred Drake authored
-
Fred Drake authored
-
Fred Drake authored
-
Fred Drake authored
references to an object before calling registered callbacks). Change last uses of verify() to self.assert_().
-
Fred Drake authored
before calling any callbacks. This is important since the callback objects only look at themselves to determine that they are invalide. This change avoids a segfault when callbacks use a different reference to an object in the process of being deallocated. This fixes SF bug #415660.
-
Guido van Rossum authored
(with modification of existing dict elements!). This is part of SF patch #409864: lazy fix for Pings bizarre scoping crash. The adaptation I made to Michael's patch was to change the error handling to avoid masking other errors (moving the specific error message to inside test_dict_inner()), and to insert a test for dict==NULL at the start.
-
Guido van Rossum authored
-
Jeremy Hylton authored
now raises NameError instead of UnboundLocalError, because the var in question is definitely not local. (This affects test_scope.py) Also update the recent fix by Ping using get_func_name(). Replace tests of get_func_name() return value with call to get_func_desc() to match all the other uses.
-
Fred Drake authored
-
Fred Drake authored
Wrap some long lines and fix some markup nits.
-
Guido van Rossum authored
Calling an unbound method on a C extension class without providing an instance can yield a segfault. Try "Exception.__init__()" or "ValueError.__init__()". This is a simple fix. The error-reporting bits in call_method mistakenly treat the misleadingly-named variable "func" as a function, when in fact it is a method. If we let get_func_name take care of the work, all is fine.
-
Ka-Ping Yee authored
-
Guido van Rossum authored
-
Guido van Rossum authored
- Removed the subsection numbering in section B (each time a new license is inserted in the front, the others have to be renumbered). - Changed the words in the intro to avoid implying that 1.6.1 is GPL-compatible.
-
Ka-Ping Yee authored
-
Jeremy Hylton authored
-
Jeremy Hylton authored
Fixes SF bug #405427. If an http response has a bogus return code, e.g. 400.100, raise BadStatusLine.
-
Jeremy Hylton authored
-
Fred Drake authored
-
Jeremy Hylton authored
-
Fred Drake authored
Turn reference to the cmd module into a hyperlink.
-
Ka-Ping Yee authored
-
Ka-Ping Yee authored
-
Ka-Ping Yee authored
Tools/idle/idlelib link doesn't cause an infinite loop -- aack!)
-
Ka-Ping Yee authored
-
Ka-Ping Yee authored
(such as the exceptions in _weakref and _locale!)
-
Ka-Ping Yee authored
-
Ka-Ping Yee authored
Restore Helper.__repr__ for now.
-
Ka-Ping Yee authored
Make synopsis() load modules as '__temp__' so they don't clobber anything. Change "constants" section to "data" section. Don't show __builtins__ or __doc__ in "data" section. For Bob Weiner: don't boldface text in Emacs shells or dumb terminals. Remove Helper.__repr__ (it really belongs in site.py, and should be guarded by a check for len(inspect.stack) <= 2).
-
Ka-Ping Yee authored
Make getmodule() on a module return the module itself.
-
Martin v. Löwis authored
fixes bug #414940, and redoes the fix for #129417 in a different way. It also fixes a number of other problems with locale-specific formatting: If there is leading or trailing spaces, then no grouping should be applied in the spaces, and the total length of the string should not be changed due to grouping. Also added test case which works only if the en_US locale is available.
-
Tim Peters authored
-
Fred Drake authored
this version avoids having to build a separate authenticated connection to push the update-docs.sh script to SF.
-
Fred Drake authored
-
Fred Drake authored
something out of this documentation release as well. ;-)
-
Guido van Rossum authored
-
Eric S. Raymond authored
-