summaryrefslogtreecommitdiff
path: root/tests/test_data.py
Commit message (Collapse)AuthorAgeFilesLines
* all: remove "u" string prefix (#1536)Georg Brandl2020-09-081-51/+51
| | | | | | | | | | | * all: remove "u" string prefix * util: remove unirange Since Python 3.3, all builds are wide unicode compatible. * unistring: remove support for narrow-unicode builds which stopped being relevant with Python 3.3
* more explicitly define escape sequencies in JsonLexer (fix #1065) (#1528)Nick Gerner2020-08-311-0/+28
| | | | | * more explicitly define escape sequencies in JsonLexer (fix #1065) * adding test coverage for #1065
* Remove unittest classes from the test suite.Georg Brandl2019-11-101-103/+110
|
* Fix #1528 -- Yaml gets confused when a comment contains a key:value pair.Matth?us G. Chajdas2019-07-201-1/+18
|
* Robustify json-object against unexpected '}'Tim Hatch2016-05-311-0/+13
|
* Add a new lexer that assumes json object is already open.Tim Hatch2016-05-311-0/+87
Fixes #884