From 54341053b273c905afa7503d8dadcc4c46a0d2d3 Mon Sep 17 00:00:00 2001 From: Neil Date: Fri, 29 Jan 2021 20:51:34 +1100 Subject: Remove Lexilla files from Scintilla --- lexilla/test/examples/python/x.py | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 lexilla/test/examples/python/x.py (limited to 'lexilla/test/examples/python/x.py') diff --git a/lexilla/test/examples/python/x.py b/lexilla/test/examples/python/x.py deleted file mode 100644 index 57833c059..000000000 --- a/lexilla/test/examples/python/x.py +++ /dev/null @@ -1,19 +0,0 @@ -# Convert all punctuation characters except '_', '*', and '.' into spaces. -def depunctuate(s): - '''A docstring''' - """Docstring 2""" - d = "" - for ch in s: - if ch in 'abcde': - d = d + ch - else: - d = d + " " - return d - -import contextlib - -@contextlib.contextmanager -def singleuse(): - print("Before") - yield -with singleuse(): pass -- cgit v1.2.3