From e597dcc8fd67ca78b9af1f82b634c44e1a62a8fc Mon Sep 17 00:00:00 2001 From: Dave Halter Date: Thu, 2 Jul 2020 01:30:34 +0200 Subject: [PATCH] Remove a Python 2 file --- test/static_analysis/python2.py | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 test/static_analysis/python2.py diff --git a/test/static_analysis/python2.py b/test/static_analysis/python2.py deleted file mode 100644 index 4d896e3e..00000000 --- a/test/static_analysis/python2.py +++ /dev/null @@ -1,11 +0,0 @@ -""" -Some special cases of Python 2. -""" -# python <= 2.7 - -# print is syntax: -print 1 -print(1) - -#! 6 name-error -print NOT_DEFINED