summaryrefslogtreecommitdiff
path: root/pygments/lexers/clean.py
Commit message (Collapse)AuthorAgeFilesLines
* Run pyupgrade across codebase to modernize syntax and patterns (#1622)Jon Dufresne2021-01-171-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | pyupgrade is a tool to automatically upgrade syntax for newer versions of the Python language. The project has been Python 3 only since 35544e2fc6eed0ce4a27ec7285aac71ff0ddc473, allowing for several cleanups: - Remove unnecessary "-*- coding: utf-8 -*-" cookie. Python 3 reads all source files as utf-8 by default. - Replace IOError/EnvironmentError with OSError. Python 3 unified these exceptions. The old names are aliases only. - Use the Python 3 shorter super() syntax. - Remove "utf8" argument form encode/decode. In Python 3, this value is the default. - Remove "r" from open() calls. In Python 3, this value is the default. - Remove u prefix from Unicode strings. In Python 3, all strings are Unicode. - Replace io.open() with builtin open(). In Python 3, these functions are functionally equivalent. Co-authored-by: Matthäus G. Chajdas <Anteru@users.noreply.github.com>
* Bump copyright year.Matthäus G. Chajdas2021-01-031-1/+1
|
* all: revert changes of [a-zA-Z0-9_] to \wGeorg Brandl2020-09-071-1/+1
| | | | ... which is not equivalent in Unicode mode
* all: fixup remaining regexlint warningsGeorg Brandl2020-09-061-7/+8
|
* Update copyright year (fixes #1514.)Matthäus G. Chajdas2020-08-221-1/+1
|
* Fixup all headers and some more minor problems.2.4.2Georg Brandl2019-05-281-1/+1
|
* Clean lexer: better support for qualified imports; add testsCamil Staps2018-11-251-11/+73
|
* inline is only a keyword after codeCamil Staps2017-09-201-3/+3
|
* Better quantified identifiersCamil Staps2017-03-061-2/+3
|
* Fix strings & add quantified identifiersCamil Staps2017-03-061-5/+3
|
* Complete rewrite of the Clean lexerCamil Staps2016-07-141-248/+77
|
* Merged in camilstaps/pygments-main (pull request #598)Tim Hatch2016-06-031-10/+23
|\ | | | | | | Clean lexer fixes: hierarchical module names; quantified inputs; generics
| * Clean lexer fixes: hierarchical module names; quantified inputs; genericsCamil Staps2016-05-311-10/+23
| |
* | Remove a bunch of duplicates in words()Tim Hatch2016-06-021-1/+1
|/
* Fixes Clean indentation issuesCamil Staps2016-02-161-12/+14
|
* Clean lexer: style nitsGeorg Brandl2016-02-161-62/+59
|
* Adapted CleanLexer according to PR discussionCamil Staps2016-02-161-16/+22
| | | | Most importantly, CleanLexer now stores indent in a LexerContext instead of in the lexer instance.
* Fixes & cleanup Clean lexer as per PR discussionCamil Staps2016-02-161-20/+20
|
* Fix previous commitCamil Staps2016-02-161-7/+7
|
* Store indent in lexer instanceCamil Staps2016-02-161-13/+8
|
* Fix Clean: allow typedef on first lineCamil Staps2016-02-161-0/+1
|
* Adds a Clean (http://clean.cs.ru.nl/Clean) Lexer and example fileCamil Staps2015-10-041-0/+274