summaryrefslogtreecommitdiff
path: root/Lib/test/tokenize_tests.txt
diff options
context:
space:
mode:
authorAnthony Baxter <anthonybaxter@gmail.com>2004-08-02 06:10:11 +0000
committerAnthony Baxter <anthonybaxter@gmail.com>2004-08-02 06:10:11 +0000
commitc2a5a636545a88f349dbe3e452ffb4494b68e534 (patch)
treeaaa24074dcdcce5afa51523969971bdd05381b01 /Lib/test/tokenize_tests.txt
parentfd7dc5169c3ca7d64109512f38762c4ce9e96c5f (diff)
downloadcpython-git-c2a5a636545a88f349dbe3e452ffb4494b68e534.tar.gz
PEP-0318, @decorator-style. In Guido's words:
"@ seems the syntax that everybody can hate equally" Implementation by Mark Russell, from SF #979728.
Diffstat (limited to 'Lib/test/tokenize_tests.txt')
-rw-r--r--Lib/test/tokenize_tests.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/test/tokenize_tests.txt b/Lib/test/tokenize_tests.txt
index e990a36069..4ef3bf134a 100644
--- a/Lib/test/tokenize_tests.txt
+++ b/Lib/test/tokenize_tests.txt
@@ -173,3 +173,6 @@ x = -1*1/1 + 1*1 - ---1*1
import sys, time
x = sys.modules['time'].time()
+@staticmethod
+def foo(): pass
+