1
0
forked from VimPlug/jedi

Tests for python2 print statement.

This commit is contained in:
Dave Halter
2015-12-18 17:57:19 +01:00
parent cc3c538d9d
commit e73b1a683a

View File

@@ -0,0 +1,10 @@
"""
Some special cases of Python 2.
"""
# print is syntax:
print 1
print(1)
#! 6 name-error
print NOT_DEFINED