- 22 Mar, 2001 40 kayıt (commit)
-
-
Jeremy Hylton yazdı
-
Fredrik Lundh yazdı
-
Jeremy Hylton yazdı
-
Guido van Rossum yazdı
Inspired by SF patch #408597 (Walter Dörwald): quopri, soft line breaks and CRLF. (I changed (" ", "\t", "\r") into " \t\r".)
-
Guido van Rossum yazdı
This is SF patch # #409044, by Internet Discovery: "Update tcl/tk/tix versions".
-
Guido van Rossum yazdı
# 409287, ssl fix when using _socketobject, by Robin Dunn. I took the opportunity to improve the way it deals with reload(socket) for the socket function as well.
-
Guido van Rossum yazdı
cmd.py uses raw_input(); eats SIGCLD: I discovered a rather nasty side effect of the standard cmd.py library today. If it's sitting inside raw_input(), any SIGCLDs that get sent to your application get silently eaten and ignored. I'm assuming that this is something that readline is thoughtfully doing for me. This patch adds an instance attr that allows the user to select to not use raw_input(), but instead use sys.stdin.readline() [Changed slightly to catch EOFError only for raw_input().]
-
Fred Drake yazdı
must now initialize the extra field used by the weak-ref machinery to NULL themselves, to avoid having to require PyObject_INIT() to check if the type supports weak references and do it there. This causes less work to be done for all objects (the type object does not need to be consulted to check for the Py_TPFLAGS_HAVE_WEAKREFS bit).
-
Fred Drake yazdı
tracked as soon as it is clear; this can decrease the number of roots for the cycle detector sooner rather than later in applications which hold on to weak references beyond the time of the invalidation.
-
Fred Drake yazdı
instance objects without calling the constructor. This is the same as the new.instance() function.
-
Guido van Rossum yazdı
CNRI release in a corner of the basement of a government building on a planet circling Aldebaran.)
-
Guido van Rossum yazdı
instead.
-
Fred Drake yazdı
-
Fred Drake yazdı
-
Fred Drake yazdı
extension object. Also included an example showing exactly what needs to be done and nothing else. This closes SF bug #228591.
-
Thomas Wouters yazdı
-
Fredrik Lundh yazdı
strings/patterns.
-
Fredrik Lundh yazdı
- take locale into account for word boundary anchors (#410271) - restored 2.0's *? behaviour (#233283, #408936 and others) - speed up re.sub/re.subn
-
Andrew M. Kuchling yazdı
-
Guido van Rossum yazdı
-
Martin v. Löwis yazdı
Retrieve relevant information at construction time, as it may be lost when the exception is printed.
-
Andrew M. Kuchling yazdı
-
Guido van Rossum yazdı
-
Thomas Wouters yazdı
linefeeds into carriagereturn-linefeeds (which is apparently what IRIX does.) Also add some comments, an extra test and reorganize it a bit.
-
Guido van Rossum yazdı
about these packages: - distutils - xml
-
Guido van Rossum yazdı
Moshe for noticing!
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
that's all that's needed.
-
Steve Purcell yazdı
changed accordingly.
-
Jeremy Hylton yazdı
import *. Mark the offending stmt rather than the function def line.
-
Jeremy Hylton yazdı
functions and import */exec.
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
with 1.5.2
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
along with options to print them. Add a finalize_options() method to Distribution to do final processing on the platform and keyword attributes Add DistributionMetadata.write_pkg_info() method to write a PKG-INFO file into the release tree.
-
Andrew M. Kuchling yazdı
-
Jeremy Hylton yazdı
If a module has a future statement enabling nested scopes, they are also enable for the exec statement and the functions compile() and execfile() if they occur in the module. If Python is run with the -i option, which enters interactive mode after executing a script, and the script it runs enables nested scopes, they are also enabled in interactive mode. XXX The use of -i with -c "from __future__ import nested_scopes" is not supported. What's the point? To support these changes, many function variants have been added to pythonrun.c. All the variants names end with Flags and they take an extra PyCompilerFlags * argument. It is possible that this complexity will be eliminated in a future version of the interpreter in which nested scopes are not optional.
-
Jeremy Hylton yazdı
Add PyEval_GetNestedScopes() which returns a non-zero value if the code for the current interpreter frame has CO_NESTED defined.
-
Guido van Rossum yazdı
like the one I just fixed to come back and haunt us.
-
Neil Schemenauer yazdı
to configure).
-