summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authoreliben <eliben@gmail.com>2012-08-10 08:24:28 +0300
committereliben <eliben@gmail.com>2012-08-10 08:24:28 +0300
commite40ae0a602b6dcbaca92555c82bff4e743ac2950 (patch)
tree995f5ba756cd8ebf5e581a5caad06217842d987f /tests
parent04b0c217fb15be0d281d3d60205cdc52920cb716 (diff)
downloadpycparser-e40ae0a602b6dcbaca92555c82bff4e743ac2950.tar.gz
Fixes for issue 74: pass decimal escapes \<num> in the lexer
Diffstat (limited to 'tests')
-rw-r--r--tests/test_c_lexer.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/test_c_lexer.py b/tests/test_c_lexer.py
index f074c59..43e7e0a 100644
--- a/tests/test_c_lexer.py
+++ b/tests/test_c_lexer.py
@@ -367,8 +367,6 @@ class TestCLexerErrors(unittest.TestCase):
self.assertLexerError("'jx'", ERR_INVALID_CCONST)
self.assertLexerError("'\*'", ERR_INVALID_CCONST)
- self.assertLexerError("'\9'", ERR_INVALID_CCONST)
- self.assertLexerError("L'\9'", ERR_INVALID_CCONST)
def test_string_literals(self):
self.assertLexerError('"jx\9"', ERR_STRING_ESCAPE)