summaryrefslogtreecommitdiff
path: root/test/scanners/python
Commit message (Collapse)AuthorAgeFilesLines
* Moving scanner tests into separate repository. The repository can be reached ↵murphy2010-04-1413-73814/+0
| | | | at http://svn.rubychan.de/coderay-scanner-tests/trunk.
* Python scanner highlights docstrings as comments (see #190).murphy2010-04-023-402/+402
|
* Updated Python scanner (#41)murphy2009-10-195-848/+900
| | | | | | | * Unicode support (kind of) * [from ...] import ... as construct highlighted as :include * added a test case for import statements
* Forgotten test file.murphy2009-06-131-779/+779
|
* Python Scanner (issue #41) updated:murphy2009-06-132-489/+489
| | | | | | | | * class and method definitions are highlighted * improved keyword argument recognition (less false positives) * backticks are operators now * from/import support still missing
* Improved Python scanner (issue #41).murphy2009-04-227-101/+171
| | | | | | | | * fixed numeric literals * better Python 3 support * bugfixes, optimizations * added two more test files
* Test cleanup.murphy2009-04-201-131/+0
| | | | | | * Fixed Scheme and SQL scanner tests after last bugfix. * Removed obsolete Python test file.
* Added test outputs for Python.murphy2009-04-204-0/+36976
|
* New: *Python Scanner* (feature #41)murphy2009-04-144-0/+36847
* Based on pygment's implementation. * The goal is to highlight both Python 2 and 3. ** print and exec will need special treatment. * Still needs work; see TODOs in the code. * Example files: PLEAC, pygments. ** The pygments.unistring code has very long lines which bother TextMate, so I put this one in a separate file. * Rating: 1 / 5 stars, "Poor support", because of problems with numeric literals. * Added .py, .pyw and .py3 to FileType. Else: * Sorted lines in FileType::TypeFromExt.