summaryrefslogtreecommitdiff
path: root/pygments/lexers/_csound_builtins.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
|
* Update for Csound 6.15.0 (#1509)Nate Whetsell2020-08-171-4/+35
| | | | | * Update for Csound 6.15.0 * Update comment
* Update Csound built-ins for v6.14.0 (#1383)Nate Whetsell2020-02-091-1/+15
| | | | Update Csound built-ins for v6.14.0
* Update for Csound 6.13.0Nathan Whetsell2019-11-101-48/+68
|
* Fixup all headers and some more minor problems.2.4.2Georg Brandl2019-05-281-1/+1
|
* Update for Csound 6.12.0Nathan Whetsell2018-10-251-20/+24
|
* Use spaces instead of tabsNathan Whetsell2018-05-111-16/+16
|
* Comment out Python scriptNathan Whetsell2018-05-111-16/+16
|
* Update for Csound 6.11.0Nathan Whetsell2018-05-111-52/+60
|
* Update for Csound 6.10.0Nathan Whetsell2017-12-241-31/+42
|
* Remove reinit from list of opcodesNathan Whetsell2017-08-301-1/+1
|
* Update for Csound 6.09.1Nathan Whetsell2017-08-061-17/+18
|
* Update for Csound 6.09.0Nathan Whetsell2017-05-261-1/+292
|
* Update lexersNathan Whetsell2017-01-271-1350/+1328
|
* Merged birkenfeld/pygments-main into defaultNathan Whetsell2017-01-271-89/+110
|\
| * Update for Csound 6.08.0Nathan Whetsell2016-12-111-90/+111
| |
| * merge default into stableGeorg Brandl2016-01-171-0/+1346
|
* Copyright update.Georg Brandl2017-01-221-1/+1
|
* Add support for partials and path segments for Handlebars.Christian Hammond2016-11-041-0/+1346
This introduces support for some missing features to the Handlebars lexer: Partials and path segments. Partials mostly appeared to work before, but the `>` in `{{> ... }}` would appear as a syntax error, as could other components of the partial. This change introduces support for: * Standard partials: `{{> partialName}}` * Partials with parameters: `{{> partialName varname="value"}}` * Ddynamic partials: `{{> (partialFunc)}}` * Ddynamic partials with lookups: `{{> (lookup ../path "partialName")}}` * Partial blocks: `{{> @partial-block}}` * Inline partials: `{{#*inline}}..{{/inline}}` It also introduces support for path segments, which can reference content in the current context or in a parent context. For instance, `this.name`, `this/name`, `./name`, `../name`, `this/name`, etc. These are all now tracked as variables.