- 11 Oct, 2002 20 commits
-
-
Guido van Rossum authored
-
Neal Norwitz authored
-
Neal Norwitz authored
Fix Konqueror so it can start when calling open(). The assert needed to be on the raw URL, not openURL 'url...' Will backport.
-
Neal Norwitz authored
-
Raymond Hettinger authored
and divmod() function for complex numbers. Closes SF Bug 621708: Unclear deprecation.
-
Guido van Rossum authored
Will backport.
-
Guido van Rossum authored
macros. The 'op' argument is then the result from PyObject_MALLOC, and that can of course be NULL. In that case, PyObject_Init[Var] would raise a SystemError with "NULL object passed to PyObject_Init[Var]". But there's nothing the caller of the macro can do about this. So PyObject_Init[Var] should call just PyErr_NoMemory. Will backport.
-
Tim Peters authored
correctly. So field3.py is a Python program that can. This injects another manual step into the Python release process for Windows; so it goes.
-
Tim Peters authored
-
Jeremy Hylton authored
-
Jeremy Hylton authored
If the request object has a header, it should override the default header provided by the OpenerDirector.
-
Fred Drake authored
getrefcount(), maxunicode, and version_info.
-
Jeremy Hylton authored
-
Jeremy Hylton authored
-
Jeremy Hylton authored
Bug fix candidate.
-
Jeremy Hylton authored
-
Michael W. Hudson authored
Only runs when sys.maxint == 2**32 - 1; different things go wrong on a 64-bit box.
-
Guido van Rossum authored
-
Martin v. Löwis authored
-
Guido van Rossum authored
'%2147483647d' % -123 segfaults. This was because an integer overflow in a comparison caused the string resize to be skipped. After fixing the overflow, this could call _PyString_Resize() with a negative size, so I (1) test for that and raise MemoryError instead; (2) also added a test for negative newsize to _PyString_Resize(), raising SystemError as for all bad arguments. An identical bug existed in unicodeobject.c, of course. Will backport to 2.2.2.
-
- 10 Oct, 2002 19 commits
-
-
Neal Norwitz authored
-
Neal Norwitz authored
-
Martin v. Löwis authored
-
Martin v. Löwis authored
-
Fred Drake authored
-
Andrew M. Kuchling authored
-
Barry Warsaw authored
-
Barry Warsaw authored
case.
-
Barry Warsaw authored
case.
-
Barry Warsaw authored
-
Barry Warsaw authored
default get_body_encoding() cannot be SHORTEST.
-
Barry Warsaw authored
sensitive. Coerce the argument to lower case.
-
Barry Warsaw authored
Coerce the argument to lower case. Also, since body encodings can't be SHORTEST, default the CHARSETS failobj's second item to BASE64.
-
Guido van Rossum authored
Immediate benefit: when you use "make -t" to avoid a global recompile after a trivial header file touchup, Make will no longer create files named all, oldsharedmods, and sharedmods. (Not sure if I tracked down all such targets. Not sure if I care.)
-
Martin v. Löwis authored
-
Martin v. Löwis authored
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
-
Kurt B. Kaiser authored
refactor a bit and clean up. M PyShell.py Cosmetic changes, delete blank lines, add # on some blank lines. M rpc.py Add more debugging capability M run.py Add support for getting calltip from subprocess Move import statements
-
- 09 Oct, 2002 1 commit
-
-
Neal Norwitz authored
Make the regex case insensitive for some web sites which use Realm.
-