Message26656
| Author |
arigo |
| Recipients |
| Date |
2005年10月21日.10:13:01 |
| SpamBayes Score |
| Marked as misclassified |
| Message-id |
| In-reply-to |
| Content |
Logged In: YES
user_id=4771
A scoping problem (comparing with the old compiler):
class X:
print hello
The variable 'hello' is incorrectly looked up with
LOAD_GLOBAL instead of LOAD_NAME. It causes a crash
in PyPy in a case where the name 'hello' is stored
into the class implicitely (via locals()). It can
probably be discussed if the bug is in PyPy, but it
is a difference in behavior. |
|
History
|
|---|
| Date |
User |
Action |
Args |
| 2007年08月23日 14:35:37 | admin | link | issue1333982 messages |
| 2007年08月23日 14:35:37 | admin | create |
|