- 01 Mar, 2001 10 kayıt (commit)
-
-
Fred Drake yazdı
WeakValueDictionary.copy(), WeakKeyDictionary.copy(): Actually return the copy!
-
Tim Peters yazdı
-
Tim Peters yazdı
-
Tim Peters yazdı
-
Tim Peters yazdı
of making new-fangled Mac imports work again. May not work, and may not even compile on his boxes, but should be at worst very close on both.
-
Andrew M. Kuchling yazdı
-
Jeremy Hylton yazdı
over the elements of st->st_global!
-
Guido van Rossum yazdı
find $(srcdir)/Lib -name '*.py[co]' -print | xargs rm -f to remove all .py[co] files before testing, rather than just those in the Lib/test directory. "find" is used all over the Makefile so I suppose it's safe; how about xargs?
-
Ka-Ping Yee yazdı
-
Ka-Ping Yee yazdı
Handle <... at 001B6378> like <... at 0x120f80> (%p is platform-dependent). Fix RCS version tag handling. Move __main__ behaviour into a function, pydoc.cli().
-
- 28 Şub, 2001 30 kayıt (commit)
-
-
Jeremy Hylton yazdı
Fix test_grammar so that it ignores warning about global stmt at module level in exec.
-
Jeremy Hylton yazdı
-
Guido van Rossum yazdı
-
Jeremy Hylton yazdı
Do better accounting for global variables.
-
Guido van Rossum yazdı
-
Jack Jansen yazdı
-
Jeremy Hylton yazdı
-
Jack Jansen yazdı
Put PPC distributions back in, rearranged packages and use VISE variable magic to determine which ConfigurePythonXXX to run.
-
Jeremy Hylton yazdı
-
Fred Drake yazdı
-
Fred Drake yazdı
-
Fred Drake yazdı
-
Jeremy Hylton yazdı
described in PEP 227. symtable_check_unoptimized() warns about import * and exec with "in" when it is used in a function that contains a nested function with free variables. Warnings are issued unless nested scopes are in effect, in which case these are SyntaxErrors. symtable_check_shadow() warns about assignments in a function scope that shadow free variables defined in a nested scope. This will always generate a warning -- and will behave differently with nested scopes than without. Restore full checking for free vars in children, even when nested scopes are not enabled. This is needed to support warnings for shadowing. Change symtable_warn() to return an int-- the return value of PyErr_WarnExplicit. Sundry cleanup: Remove commented out code. Break long lines.
-
Jeremy Hylton yazdı
-
Andrew M. Kuchling yazdı
a subdirectory.
-
Andrew M. Kuchling yazdı
Remove references to 2.1alpha Update description of PEP229
-
Guido van Rossum yazdı
moved).
-
Andrew M. Kuchling yazdı
Update reference Python version to beta1 Rip out PEP 232 section Add placeholders for PEP 236 and 235 Fix erroneous \filename references
-
Andrew M. Kuchling yazdı
Minor sentence change
-
Guido van Rossum yazdı
warning.
-
Skip Montanaro yazdı
-
Guido van Rossum yazdı
global after assign / use. Note: I'm not updating the PyErr_Warn() call for import * / exec combined with a function, because I can't trigger it with an example. Jeremy, just follow the example of the call to PyErr_WarnExplicit() that I *did* include.
-
Fred Drake yazdı
location information for the SyntaxError -- do not do more than we need to, stopping as soon as an exception has been raised.
-
Fred Drake yazdı
to the class namespace. Allow FTP.close() to be called more than once without tossing cookies. (This seems to be a fairly common idiom for .close() methods, so let's try to be consistent.)
-
Guido van Rossum yazdı
explicit filename, lineno etc. arguments.
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
warn_explicit(message, category, filename, lineno, module, registry) The regular warn() call calculates a bunch of values and calls warn_explicit() with these. This will be used to issue better syntax warnings.
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
-
Fred Drake yazdı
so let's rip it out. The constructor for SyntaxError does the right thing, so we do not need to do it again.
-