This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Typo fix in compiler/transformer.py (WalkerEror)
Type: Stage:
Components: Library (Lib) Versions: Python 2.4
process
Status: closed Resolution: accepted
Dependencies: Superseder:
Assigned To: georg.brandl Nosy List: adimasci, georg.brandl, georg.brandl
Priority: normal Keywords: patch

Created on 2005-07-02 16:55 by adimasci, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
transformer.py.patch adimasci, 2005-07-02 16:55 patch for the transformer.py module
Messages (2)
msg48563 - (view) Author: Adrien Di Mascio (adimasci) Date: 2005-07-02 16:55
Error description :
Module : transformer.py
Package : compiler (python implementation, not the builtin C one)

There seems to be some typos in compiler/transformer.py. A 
WalkerError exception class is defined but a WalkerEror (with one 
missing 'r') instance is raised some times.

I couldn't find a bug or patch in the tracker.

The patch was generated with the following command line :
diff -c transformer.py transformer.py.fixed > transformer.py.patch

The patch is based on the current CVS version of transformer.py 
(i.e. version 1.50)
msg48564 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2005-07-02 18:38
Logged In: YES 
user_id=1188172

Thanks for the report, committed as
Lib/compiler/transformer.py r1.51, r1.49.2.1
History
Date User Action Args
2022-04-11 14:56:12adminsetgithub: 42156
2005-07-02 16:55:44adimascicreate