- 22 May, 2002 14 kayıt (commit)
-
-
Neal Norwitz yazdı
A MemoryError is now raised when the list cannot be created. There is a test, but as the comment says, it really only works for 32 bit systems. I don't know how to improve the test for other systems (ie, 64 bit or systems where the data size != addressable size, e.g. 64 bit data, but 48 bit addressable memory)
-
Fred Drake yazdı
-
Barry Warsaw yazdı
constructor, vetted by Barry.
-
Barry Warsaw yazdı
WITH_UNIVERSAL_NEWLINES is enabled.
-
Jason Tishler yazdı
mwh wrote: > Jason, feel free to complain if you think this isn't > the right thing to do. I guess that I would like to complain and reopen this issue. :,) I cannot build a Python 2.2.1 with threads under Cygwin without this patch even though I'm using Michael's static _socket workaround. This is due to the Cygwin fork() problem with DLL base address conflicts that are triggered by importing many modules during the setup.py run. Similar problems can also be caused by regrtest.py. Even after my rebase patch is accepted into Cygwin's setup.exe, I feel this patch will still be necessary. This is because during the build process, the shared extensions (i.e., DLLs) will not be rebased yet. Hence, the potential for DLL base address conflicts will exist. One way to obviate this patch is to push the rebase functionality into Cygwin's ld. Unfortunately, I don't think this is likely to happen. Another possible way, is to use the yet to be defined and implemented unload module functionality: http://mail.python.org/pipermail/python-dev/2001-December/019028.html
-
Jack Jansen yazdı
-
Jack Jansen yazdı
Allow the script to have not only a TEXT filetype but also a null filetype (to enable files to be created from the Unix side of OSX to be droppable on the MacPython interpreter).
-
Jack Jansen yazdı
-
Jack Jansen yazdı
-
Jack Jansen yazdı
-
Fred Drake yazdı
Added documentation for BooleanType.
-
Barry Warsaw yazdı
-
Barry Warsaw yazdı
the AddressList.addresslist attribute directly. Also, add a test case for the email.Utils.getaddresses() interface.
-
Barry Warsaw yazdı
-
- 21 May, 2002 13 kayıt (commit)
-
-
Skip Montanaro yazdı
-
Guido van Rossum yazdı
non-callable objects is always None. This makes for less confusing output and fixes the problem reported in SF patch #550290.
-
Barry Warsaw yazdı
instead of calling the getaddrlist() method, since the latter doesn't work with multiple calls (it will return the empty list for the second and subsequent calls). Closes SF bug #555035. Include a unittest.
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
-
Fred Drake yazdı
-
Neil Schemenauer yazdı
-
Raymond Hettinger yazdı
-
Fred Drake yazdı
string-type tests for versions of Python built without Unicode support.
-
Guido van Rossum yazdı
-
Raymond Hettinger yazdı
is Control-A rather than Alt-A.
-
Fred Drake yazdı
of the PyUNIT version of the same file. This helps people understand that this version is the same as the version from the independent PyUNIT release (confusion was indicated on the PyUNIT mailing list).
-
- 20 May, 2002 9 kayıt (commit)
-
-
Michael W. Hudson yazdı
-
Michael W. Hudson yazdı
This is a strange test.
-
Michael W. Hudson yazdı
I'm getting better at vi!
-
Michael W. Hudson yazdı
works better (at all!) in --disable-unicode builds. Bugfix candidate, probably.
-
Michael W. Hudson yazdı
-
Michael W. Hudson yazdı
-
Michael W. Hudson yazdı
-
Michael W. Hudson yazdı
[ 558249 ] softspace vs --disable-unicode And #endif was in the wrong place. Bugfix candidate, almost surely. I think I will embark on squashing test failures in --disable-unicode builds -- a Real Bug was hiding under them.
-
Barry Warsaw yazdı
-
- 19 May, 2002 4 kayıt (commit)
-
-
Barry Warsaw yazdı
-
Barry Warsaw yazdı
and explicit maxlinelen arguments to the Header constructor.
-
Barry Warsaw yazdı
email package's Parser to handle the three common line endings. Certain protocols such as IMAP define CRLF line endings and it doesn't make sense for the client app to have to normalize the line endings before handing it message off to the Parser. _parsebody(): Be more flexible in the matching of line endings for finding the MIME separators. Accept any of \r, \n and \r\n. Note that we do /not/ change the line endings in the payloads, we just accept any of those three around MIME boundaries.
-
Barry Warsaw yazdı
single byte character sets. Also fixed a semantic problem with the constructor's default arguments. Specifically, __init__(): Change the maxlinelen argument default to None instead of MAXLINELEN. The semantics should have been (and now are) that if maxlinelen is given it is always honored. If it isn't given, but header_name is given, then the maximum line length is calculated. If neither are given then the default 76 characters is used. _split(): If the character set is a single byte character set then we can split the line at the maxlinelen because we know that encoding the header won't increase its length. If the charset isn't a single byte charset then we use the quicker divide-and-conquer line splitting algorithm as before.
-