- 14 Eki, 2002 9 kayıt (commit)
-
-
Fred Drake yazdı
-
Barry Warsaw yazdı
-
Barry Warsaw yazdı
-
Barry Warsaw yazdı
must be a Charset instance, not a string. The bug here was that self._charset wasn't being converted to a Charset instance so later .append() calls which used the default charset would break. _split(): If the charset of the chunk is '8bit', return the chunk unchanged. We can't safely split it, so this is the avenue of least harm.
-
Barry Warsaw yazdı
8-bit data, we cannot split it safely, so return the original string unchanged. _is8bitstring(): Helper function which returns True when we have a byte string that contains non-ascii characters (i.e. mysterious 8-bit data).
-
Barry Warsaw yazdı
which we know nothing else.
-
Fred Drake yazdı
-
Tim Peters yazdı
-
Guido van Rossum yazdı
SF bug 585882. Will forward-port.
-
- 13 Eki, 2002 6 kayıt (commit)
-
-
Greg Ward yazdı
(rev. 1.4 of distutils/fancy_getopt.py).
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
-
Barry Warsaw yazdı
Also, it fixes a really egregious error in Header.encode() (really in Header._encode_chunks()) that could cause a header to grow and grow each time encode() was called if output_codec was different from input_codec. Also, fix a typo.
-
Barry Warsaw yazdı
Korean, and Chinese codecs.
-
- 12 Eki, 2002 1 kayıt (commit)
-
-
Fred Drake yazdı
-
- 11 Eki, 2002 20 kayıt (commit)
-
-
Guido van Rossum yazdı
-
Neal Norwitz yazdı
-
Neal Norwitz yazdı
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 yazdı
-
Raymond Hettinger yazdı
and divmod() function for complex numbers. Closes SF Bug 621708: Unclear deprecation.
-
Guido van Rossum yazdı
Will backport.
-
Guido van Rossum yazdı
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 yazdı
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 yazdı
-
Jeremy Hylton yazdı
-
Jeremy Hylton yazdı
If the request object has a header, it should override the default header provided by the OpenerDirector.
-
Fred Drake yazdı
getrefcount(), maxunicode, and version_info.
-
Jeremy Hylton yazdı
-
Jeremy Hylton yazdı
-
Jeremy Hylton yazdı
Bug fix candidate.
-
Jeremy Hylton yazdı
-
Michael W. Hudson yazdı
Only runs when sys.maxint == 2**32 - 1; different things go wrong on a 64-bit box.
-
Guido van Rossum yazdı
-
Martin v. Löwis yazdı
-
Guido van Rossum yazdı
'%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 Eki, 2002 4 kayıt (commit)
-
-
Neal Norwitz yazdı
-
Neal Norwitz yazdı
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
-