- 26 Jan, 2001 13 commits
-
-
Christopher Petrilli authored
-
Christopher Petrilli authored
-
Guido van Rossum authored
a simple regression test.
-
Guido van Rossum authored
I chose semantics that make all variables defined in outer scopes (including globals) visible as locals, unless overridden by assignment in inner scope.
-
Guido van Rossum authored
-
Guido van Rossum authored
-
-
Evan Simpson authored
-
Chris McDonough authored
-
- 25 Jan, 2001 7 commits
-
-
Chris McDonough authored
-
Chris McDonough authored
Added check for 'FORCE_PRODUCT_LOAD' to bits which try to detect whether we're a ZEO client or not in order not to skip product-loading tasks. This has the consequence that a ZEO client with the "ZEO_CLIENT" env var set will cause product loading tasks to occur iff his "FORCE_PRODUCT_LOAD" environment var is set as well.
-
Jim Fulton authored
a bug that caused ExtensionClasses with __call_method__ hook to fail to call unbound CMethods. Thanks!
-
- 24 Jan, 2001 7 commits
-
-
john authored
-
Evan Simpson authored
-
Shane Hathaway authored
- 23 Jan, 2001 8 commits
-
-
Christopher Petrilli authored
-
Jim Fulton authored
case, the ComputedAttribute object does a simple getattr. This is a simple way to set up aliases. For example:: class foo: spam=ComputedAttribute('eggs') is equivalent to: class foo: spam=ComputedAttribute(lambda self: self.eggs) Note that the simple alias version also avoids a function call.
-
Tres Seaver authored
-
- 22 Jan, 2001 5 commits
-
-
Michel Pelletier authored