nedpals / errgoengine

Contextualized programming error analysis translation engine

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

[ERROR TEMPLATE] Python - NameError

nedpals opened this issue · comments

commented
Name Type Code Language
NameError Runtime Exception python.lang.NameError Python

Description

Raised when a local or global name is not found.

Sample Code

print(test)

Sample Error Message

Traceback (most recent call last):
  File "name_error.py", line 1, in <module>
    print(test)
          ^^^^
NameError: name 'test' is not defined

Implementation Checklist

  • Implemented analysis
  • Implemented explanation translation
  • Implemented bug fix generation
  • Add tests