- 02 May, 2000 3 kayıt (commit)
-
-
Guido van Rossum yazdı
telnetlib is unable to connect to a few telnet daemons because of improper IAC handling, heres an attached oneliner to reject WILL messages which will allow many more telnet daemons to work with it, namely FreeBSD.
-
Guido van Rossum yazdı
Bad % formatting.
-
Guido van Rossum yazdı
the /nodefaultlib: option.
-
- 01 May, 2000 12 kayıt (commit)
-
-
Guido van Rossum yazdı
Fixed \OOO interpretation for Unicode objects. \777 now correctly produces the Unicode character with ordinal 511.
-
Guido van Rossum yazdı
Changed all references to the MAGIC constant to use a global pyc_magic instead. This global is initially set to MAGIC, but can be changed by the _PyImport_Init() function to provide for special features implemented in the compiler which are settable using command line switches and affect the way PYC files are generated. Currently this change is only done for the -U flag.
-
Guido van Rossum yazdı
(1) Added and documented the capability for shlex to handle lexical-level inclusion and a stack of input sources. Also, the input stream member is now documented, and the constructor takes an optional source-filename. The class provides facilities to generate error messages that track file and line number. (2) Add a convenience function to generate C-compiler style error leaders.
-
Guido van Rossum yazdı
Add a convenience function to generate C-compiler style error leaders.
-
Guido van Rossum yazdı
Added and documented the capability for shlex to handle lexical-level inclusion and a stack of input sources. Also, the input stream member is now documented, and the constructor takes an optional source-filename. The class provides facilities to generate error messages that track file and line number. [GvR: I changed the __main__ code so that it actually stops at EOF, as Eric surely intended -- however it returned '' instead of the None he was testing for.]
-
Guido van Rossum yazdı
Added Py_UnicodeFlag for use by the -U command line option.
-
Guido van Rossum yazdı
Support for the new -U command line option option: with the option enabled the Python compiler interprets all "..." strings as u"..." (same with r"..." and ur"...").
-
Guido van Rossum yazdı
Added -U command line option. With the option enabled the Python compiler interprets all "..." strings as u"..." (same with r"..." and ur"...").
-
Guido van Rossum yazdı
1.6a2 caused by wrong return values in routine allcaps83. [GvR: I also changed the case for end-s>8 to return 0.]
-
Barry Warsaw yazdı
previous functionality utime(path, (atime, mtime)), now allowed is utime(path, None) which sets the file's times to the current time.
-
Guido van Rossum yazdı
The two methods .readline() and .readlines() in StreamReaderWriter didn't define the self argument. Found by Tom Emerson.
-
Barry Warsaw yazdı
utime(path, NULL) call, setting the atime and mtime of the file to the current time. The previous signature utime(path, (atime, mtime)) is of course still allowed.
-
- 28 Nis, 2000 14 kayıt (commit)
-
-
Guido van Rossum yazdı
Store sys.exc_info()[:2] instead.
-
Guido van Rossum yazdı
because we've added Unicode marshalling to the repertoire.
-
Fred Drake yazdı
sufficiently robust to survive the creation of bookmarks in the PDF format.
-
Fred Drake yazdı
-
Fred Drake yazdı
Made the attributes more XHTML-friendly.
-
Greg Ward yazdı
bad link URLs in HTML, etc.
-
Greg Ward yazdı
???/*.css and ???/*.html -- need to pick up the Distutils manuals!
-
Greg Ward yazdı
-
Greg Ward yazdı
-
Greg Ward yazdı
-
Guido van Rossum yazdı
Follow a suggestion in an /*XXX*/ comment [in com_add()] to speed up compilation by using supplemental dictionaries to keep track of names and constants, eliminating quadratic behavior. With this patch in place, the time to import a 5000-line file with lots of constants [at the global level] is reduced from 20 seconds to under 3 on my system.
-
Fred Drake yazdı
from Brian Hooper <brian_takashi@hotmail.com>.
-
Fred Drake yazdı
Here's a patch which changes modsupport to add 'u' and 'u#', to support building Unicode objects from a null-terminated Py_UNICODE *, and a Py_UNICODE * with length, respectively. [Conversion from 'U' to 'u' by Fred, based on python-dev comments.] Note that the use of None for NULL values of the Py_UNICODE* value is still in; I'm not sure of the conclusion on that issue.
-
Guido van Rossum yazdı
-
- 27 Nis, 2000 11 kayıt (commit)
-
-
Guido van Rossum yazdı
remaining object references if the environment variable PYTHONDUMPREFS exists. The default behaviour caused problems for background or otherwise invisible processes that use the debug build of Python.
-
Jeremy Hylton yazdı
-
Jeremy Hylton yazdı
-
Jeremy Hylton yazdı
-
Fred Drake yazdı
-
Guido van Rossum yazdı
Fixes a memory leak found by Fredrik Lundh.
-
Guido van Rossum yazdı
Doc strings can now be given as Unicode strings.
-
Guido van Rossum yazdı
Fixed a reference leak in the allocator. Renamed utf8_string to _PyUnicode_AsUTF8String() and made it external for use by other parts of the interpreter.
-
Guido van Rossum yazdı
Fixed a memory leak found by Fredrik Lundh. Instead of PyUnicode_AsUTF8String() we now use _PyUnicode_AsUTF8String() which returns the string object without incremented refcount (and assures that the so obtained object remains alive until the Unicode object is garbage collected).
-
Greg Ward yazdı
in certain circumstances. (Apparently, this is a CPython problem.)
-
Greg Ward yazdı
it is forcibly prepended onto all installation directories, even if they are already absolute. Added 'dump_dirs()' to clean up the debug output a bit.
-