- 23 Tem, 2001 12 kayıt (commit)
-
-
Neil Schemenauer yazdı
-
Neil Schemenauer yazdı
and PYTHONPATH).
-
Fred Drake yazdı
-
Fred Drake yazdı
Heavily modified so this doesn't break on Windows. This closes SF patch #441175.
-
Moshe Zadka yazdı
fault in sys.displayhook. Please check this in on the 2.2a1 branch (or whatever is necessary to get it working next release)
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
exception in the execution of bar, ensure that foo.bar exists. (Previously, while sys.modules['foo.bar'] would exist, foo.bar would only be created upon successful execution of bar. This is inconvenient; some would say wrong. :-)
-
Tim Peters yazdı
Note: This test fails on Windows. Don't know why yet.
-
Martin v. Löwis yazdı
whether h_errno is a macro.
-
Fred Drake yazdı
This closes SF patch #440291.
-
Fred Drake yazdı
This closes SF patch #440290.
-
Martin v. Löwis yazdı
-
- 21 Tem, 2001 10 kayıt (commit)
-
-
Tim Peters yazdı
extensions -- but Inno uninstall doesn't restore previous ones (if any), so that's another step backwards.
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
New functions getnameinfo, getaddrinfo. New exceptions socket.gaierror, socket.herror. Various new constants, in particular AF_INET6 and error codes and parameters for getaddrinfo. AF_INET6 support in setipaddr, makesockaddr, getsockaddr, getsockaddrlen, gethost_common, PySocket_gethostbyaddr.
-
Fred Drake yazdı
-
Steven M. Gava yazdı
-
Steven M. Gava yazdı
-
Martin v. Löwis yazdı
inet_pton/ntop, convert htons argument to u_short.
-
Tim Peters yazdı
-
Tim Peters yazdı
-
Tim Peters yazdı
+ test_quopri.py relied on significant trailing spaces. Fixed. + test_dircache.py (still) doesn't work on Windows (directory mtime on Windows doesn't work like it does on Unix).
-
- 20 Tem, 2001 18 kayıt (commit)
-
-
Fred Drake yazdı
Added information on the return values of PyArg_ParseTuple() and PyArg_ParseTupleAndKeywords().
-
Fred Drake yazdı
Moved the PyArg_Parse*(), Py_BuildValue() functions to the Utilities chapter, added a minimal description and reference to the Extending manual for Py_BuildValue().
-
Fred Drake yazdı
-
Fred Drake yazdı
is complete: recompute _dirs_in_sys_path each time these functions are entered after module initialization is complete, and reset before returning to user code. This closes SF patch #442983.
-
Andrew M. Kuchling yazdı
distutils.util.get_platform() problems caused by the cruft contained in Cygwin's uname -s.
-
Fred Drake yazdı
-
Fred Drake yazdı
-
Fred Drake yazdı
Move computation of sets of characters out of the body of the function that uses them.
-
Fred Drake yazdı
Work-around a font-lock bogosity.
-
Fred Drake yazdı
Remove unused import.
-
Fred Drake yazdı
to the string module. This was determined to be the right approach in SF bug #226706.
-
Andrew M. Kuchling yazdı
Mention additional new imaplib.py features (Don't expect to see an updated version of the Web page until around the 28th of July. Vacation time!)
-
Marc-André Lemburg yazdı
correctly and thus roundtrip-safe. Some minor cleanups of the code. Added tests for the roundtrip-safety.
-
Guido van Rossum yazdı
#caused warnings with the VMS C compiler. (SF bug #442998, in part.) On a narrow system the current code should never be executed since ch will always be < 0x10000. Marc-Andre: you may end up fixing this a different way, since I believe you have plans to generate \U for surrogate pairs. I'll leave that to you.
-
Fred Drake yazdı
already present in the "String literals" section, including comments on the "u" prefix and the additional escape sequences used for Unicode. This relates to SF bug #442526.
-
Guido van Rossum yazdı
Fix showstopper SF bug #442983: use of site.addsitedir() was broken because it references the global dirs_in_sys_path which is deleted. The fix avoids deleting that global. (My email through python.org or digicool.com is non-functional at the moment; use gvanrossum@home.com to reach me.)
-
Fred Drake yazdı
This closes SF bug #443059.
-
Piers Lauder yazdı
-