mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-07 06:24:27 +08:00
12 lines
128 B
Python
12 lines
128 B
Python
"""
|
|
Some special cases of Python 2.
|
|
"""
|
|
# python <= 2.7
|
|
|
|
# print is syntax:
|
|
print 1
|
|
print(1)
|
|
|
|
#! 6 name-error
|
|
print NOT_DEFINED
|