- 22 Mar, 2001 9 kayıt (commit)
-
-
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).
-
Neil Schemenauer yazdı
- Add CONFIG_ARGS variable and use it to re-run configure rather than using config.status. This prevents an infinite loop if configure dies while re-configuring.
-
Guido van Rossum yazdı
This fixes SF bug #410146 (python 2.1b shelve is broken).
-
- 21 Mar, 2001 25 kayıt (commit)
-
-
Tim Peters yazdı
This makes verbose-mode output easier to dig thru, and removes an accidental dependence on the order of dict.items() (made visible by recent changes to dictobject.c).
-
Fred Drake yazdı
supporting cyclic garbage collection. (This is not all of it, but I'm taking a break!) Also fixed some markup nits.
-
Jeremy Hylton yazdı
-
Jeremy Hylton yazdı
-
Tim Peters yazdı
associated with existing dict keys. This is a variant of part of Michael Hudson's patch #409864 "lazy fix for Pings bizarre scoping crash".
-
Guido van Rossum yazdı
unbound method is of the right type. Hopefully this solves SF patch #409355 (Meta-class inheritance problem); I have no easy way to test.
-
Jeremy Hylton yazdı
line summary followed by blank line and description.
-
Jeremy Hylton yazdı
-
Guido van Rossum yazdı
APIs, PyObject_IsInstance() and PyObject_IsSubclass() -- both returning an int, or -1 for errors.
-
Fred Drake yazdı
-
Fred Drake yazdı
Add some helpers for supporting PyUNIT-based unit testing.
-
Fred Drake yazdı
-
Fred Drake yazdı
Patch to make "\" in a character group work properly. This closes SF bug #409651.
-
Moshe Zadka yazdı
-
Jeremy Hylton yazdı
- global stmt in class does not affect free vars in methods - locals() works with free and cell vars
-
Jeremy Hylton yazdı
frees. Note there doesn't seem to be any way to test LocalsToFast(), because the instructions that trigger it are illegal in nested scopes with free variables. Fix allocation strategy for cells that are also formal parameters. Instead of emitting LOAD_FAST / STORE_DEREF pairs for each parameter, have the argument handling code in eval_code2() do the right thing. A side-effect of this change is that cell variables that are also arguments are listed at the front of co_cellvars in the order they appear in the argument list.
-
Martin v. Löwis yazdı
Closes bug #231439.
-
Guido van Rossum yazdı
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
Report the addition of the Tix module.
-
Martin v. Löwis yazdı
by requiring it. Also remove commentary from Setup.dist about commenting in and out stuff.
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
and Setup.
-
Tim Peters yazdı
-
Tim Peters yazdı
-
- 20 Mar, 2001 6 kayıt (commit)
-
-
Jack Jansen yazdı
-
Jack Jansen yazdı
-
Jack Jansen yazdı
-
Fred Drake yazdı
and note that it fails when the TZ environment variable is not set. This closes SF bug #409683.
-
Jack Jansen yazdı
-
Jack Jansen yazdı
-