pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/textproc/py-pygments Update to 2.0:
details: https://anonhg.NetBSD.org/pkgsrc/rev/e7f954fdea9b
branches: trunk
changeset: 641838:e7f954fdea9b
user: wiz <wiz%pkgsrc.org@localhost>
date: Wed Nov 19 12:57:55 2014 +0000
description:
Update to 2.0:
Version 2.0
-----------
(released Nov 9, 2014)
- Default lexer encoding is now "guess", i.e. UTF-8 / Locale / Latin1 is
tried in that order.
- Major update to Swift lexer (pull request #410).
- Multiple fixes to lexer guessing in conflicting cases:
* recognize HTML5 by doctype
* recognize XML by XML declaration
* don't recognize C/C++ as SystemVerilog
- Simplified regexes and builtin lists.
Version 2.0rc1
--------------
(released Oct 16, 2014)
- Dropped Python 2.4 and 2.5 compatibility. This is in favor of single-source
compatibility between Python 2.6, 2.7 and 3.3+.
- New website and documentation based on Sphinx (finally!)
- Lexers added:
* APL (#969)
* Agda and Literate Agda (pull request #203)
* Alloy (pull request #355)
* AmbientTalk
* BlitzBasic (pull request #197)
* ChaiScript (pull request #24)
* Chapel (pull request #256)
* Cirru (pull request #275)
* Clay (pull request #184)
* ColdFusion CFC (pull request #283)
* Cryptol and Literate Cryptol (pull request #344)
* Cypher (pull request #257)
* Docker config files
* EBNF (pull request #193)
* Eiffel (pull request #273)
* GAP (pull request #311)
* Golo (pull request #309)
* Handlebars (pull request #186)
* Hy (pull request #238)
* Idris and Literate Idris (pull request #210)
* Igor Pro (pull request #172)
* Inform 6/7 (pull request #281)
* Intel objdump (pull request #279)
* Isabelle (pull request #386)
* Jasmin (pull request #349)
* JSON-LD (pull request #289)
* Kal (pull request #233)
* Lean (pull request #399)
* LSL (pull request #296)
* Limbo (pull request #291)
* Liquid (#977)
* MQL (pull request #285)
* MaskJS (pull request #280)
* Mozilla preprocessors
* Mathematica (pull request #245)
* NesC (pull request #166)
* Nit (pull request #375)
* Nix (pull request #267)
* Pan
* Pawn (pull request #211)
* Perl 6 (pull request #181)
* Pig (pull request #304)
* Pike (pull request #237)
* QBasic (pull request #182)
* Red (pull request #341)
* ResourceBundle (#1038)
* Rexx (pull request #199)
* Rql (pull request #251)
* Rsl
* SPARQL (pull request #78)
* Slim (pull request #366)
* Swift (pull request #371)
* Swig (pull request #168)
* TADS 3 (pull request #407)
* Todo.txt todo lists
* Twig (pull request #404)
- Added a helper to "optimize" regular expressions that match one of many
literal words; this can save 20% and more lexing time with lexers that
highlight many keywords or builtins.
- New styles: "xcode" and "igor", similar to the default highlighting of
the respective IDEs.
- The command-line "pygmentize" tool now tries a little harder to find the
correct encoding for files and the terminal (#979).
- Added "inencoding" option for lexers to override "encoding" analogous
to "outencoding" (#800).
- Added line-by-line "streaming" mode for pygmentize with the "-s" option.
(pull request #165) Only fully works for lexers that have no constructs spanning
lines!
- Added an "envname" option to the LaTeX formatter to select a replacement
verbatim environment (pull request #235).
- Updated the Makefile lexer to yield a little more useful highlighting.
- Lexer aliases passed to ``get_lexer_by_name()`` are now case-insensitive.
- File name matching in lexers and formatters will now use a regex cache
for speed (pull request #205).
- Pygments will now recognize "vim" modelines when guessing the lexer for
a file based on content (pull request #118).
- Major restructure of the ``pygments.lexers`` module namespace. There are now
many more modules with less lexers per module. Old modules are still around
and re-export the lexers they previously contained.
- The NameHighlightFilter now works with any Name.* token type (#790).
- Python 3 lexer: add new exceptions from PEP 3151.
- Opa lexer: add new keywords (pull request #170).
- Julia lexer: add keywords and underscore-separated number
literals (pull request #176).
- Lasso lexer: fix method highlighting, update builtins. Fix
guessing so that plain XML isn't always taken as Lasso (pull request #163).
- Objective C/C++ lexers: allow "@" prefixing any expression (#871).
- Ruby lexer: fix lexing of Name::Space tokens (#860) and of symbols
in hashes (#873).
- Stan lexer: update for version 2.4.0 of the language (pull request #162, PR#255, PR#377).
- JavaScript lexer: add the "yield" keyword (pull request #196).
- HTTP lexer: support for PATCH method (pull request #190).
- Koka lexer: update to newest language spec (pull request #201).
- Haxe lexer: rewrite and support for Haxe 3 (pull request #174).
- Prolog lexer: add different kinds of numeric literals (#864).
- F# lexer: rewrite with newest spec for F# 3.0 (#842), fix a bug with
dotted chains (#948).
- Kotlin lexer: general update (pull request #271).
- Rebol lexer: fix comment detection and analyse_text (pull request #261).
- LLVM lexer: update keywords to v3.4 (pull request #258).
- PHP lexer: add new keywords and binary literals (pull request #222).
- external/markdown-processor.py updated to newest python-markdown (pull request #221).
- CSS lexer: some highlighting order fixes (pull request #231).
- Ceylon lexer: fix parsing of nested multiline comments (#915).
- C family lexers: fix parsing of indented preprocessor directives (#944).
- Rust lexer: update to 0.9 language version (pull request #270, PR#388).
- Elixir lexer: update to 0.15 language version (pull request #392).
- Fix swallowing incomplete tracebacks in Python console lexer (#874).
diffstat:
textproc/py-pygments/Makefile | 4 +-
textproc/py-pygments/PLIST | 302 ++++++++++++++++++++++++++++++++++++++---
textproc/py-pygments/distinfo | 8 +-
3 files changed, 280 insertions(+), 34 deletions(-)
diffs (truncated from 434 to 300 lines):
diff -r ebaf41039c07 -r e7f954fdea9b textproc/py-pygments/Makefile
--- a/textproc/py-pygments/Makefile Wed Nov 19 12:55:49 2014 +0000
+++ b/textproc/py-pygments/Makefile Wed Nov 19 12:57:55 2014 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.14 2014/01/25 10:30:25 wiz Exp $
+# $NetBSD: Makefile,v 1.15 2014/11/19 12:57:55 wiz Exp $
-DISTNAME= Pygments-1.6
+DISTNAME= Pygments-2.0
PKGNAME= ${PYPKGPREFIX}-${DISTNAME:tl}
CATEGORIES= textproc python
MASTER_SITES= http://pypi.python.org/packages/source/P/Pygments/
diff -r ebaf41039c07 -r e7f954fdea9b textproc/py-pygments/PLIST
--- a/textproc/py-pygments/PLIST Wed Nov 19 12:55:49 2014 +0000
+++ b/textproc/py-pygments/PLIST Wed Nov 19 12:57:55 2014 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.9 2013/03/03 07:31:30 obache Exp $
+@comment $NetBSD: PLIST,v 1.10 2014/11/19 12:57:55 wiz Exp $
bin/pygmentize
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
@@ -63,105 +63,339 @@
${PYSITELIB}/pygments/lexers/__init__.py
${PYSITELIB}/pygments/lexers/__init__.pyc
${PYSITELIB}/pygments/lexers/__init__.pyo
-${PYSITELIB}/pygments/lexers/_asybuiltins.py
-${PYSITELIB}/pygments/lexers/_asybuiltins.pyc
-${PYSITELIB}/pygments/lexers/_asybuiltins.pyo
-${PYSITELIB}/pygments/lexers/_clbuiltins.py
-${PYSITELIB}/pygments/lexers/_clbuiltins.pyc
-${PYSITELIB}/pygments/lexers/_clbuiltins.pyo
-${PYSITELIB}/pygments/lexers/_lassobuiltins.py
-${PYSITELIB}/pygments/lexers/_lassobuiltins.pyc
-${PYSITELIB}/pygments/lexers/_lassobuiltins.pyo
-${PYSITELIB}/pygments/lexers/_luabuiltins.py
-${PYSITELIB}/pygments/lexers/_luabuiltins.pyc
-${PYSITELIB}/pygments/lexers/_luabuiltins.pyo
+${PYSITELIB}/pygments/lexers/_asy_builtins.py
+${PYSITELIB}/pygments/lexers/_asy_builtins.pyc
+${PYSITELIB}/pygments/lexers/_asy_builtins.pyo
+${PYSITELIB}/pygments/lexers/_cl_builtins.py
+${PYSITELIB}/pygments/lexers/_cl_builtins.pyc
+${PYSITELIB}/pygments/lexers/_cl_builtins.pyo
+${PYSITELIB}/pygments/lexers/_cocoa_builtins.py
+${PYSITELIB}/pygments/lexers/_cocoa_builtins.pyc
+${PYSITELIB}/pygments/lexers/_cocoa_builtins.pyo
+${PYSITELIB}/pygments/lexers/_lasso_builtins.py
+${PYSITELIB}/pygments/lexers/_lasso_builtins.pyc
+${PYSITELIB}/pygments/lexers/_lasso_builtins.pyo
+${PYSITELIB}/pygments/lexers/_lua_builtins.py
+${PYSITELIB}/pygments/lexers/_lua_builtins.pyc
+${PYSITELIB}/pygments/lexers/_lua_builtins.pyo
${PYSITELIB}/pygments/lexers/_mapping.py
${PYSITELIB}/pygments/lexers/_mapping.pyc
${PYSITELIB}/pygments/lexers/_mapping.pyo
-${PYSITELIB}/pygments/lexers/_openedgebuiltins.py
-${PYSITELIB}/pygments/lexers/_openedgebuiltins.pyc
-${PYSITELIB}/pygments/lexers/_openedgebuiltins.pyo
-${PYSITELIB}/pygments/lexers/_phpbuiltins.py
-${PYSITELIB}/pygments/lexers/_phpbuiltins.pyc
-${PYSITELIB}/pygments/lexers/_phpbuiltins.pyo
+${PYSITELIB}/pygments/lexers/_mql_builtins.py
+${PYSITELIB}/pygments/lexers/_mql_builtins.pyc
+${PYSITELIB}/pygments/lexers/_mql_builtins.pyo
+${PYSITELIB}/pygments/lexers/_openedge_builtins.py
+${PYSITELIB}/pygments/lexers/_openedge_builtins.pyc
+${PYSITELIB}/pygments/lexers/_openedge_builtins.pyo
+${PYSITELIB}/pygments/lexers/_php_builtins.py
+${PYSITELIB}/pygments/lexers/_php_builtins.pyc
+${PYSITELIB}/pygments/lexers/_php_builtins.pyo
${PYSITELIB}/pygments/lexers/_postgres_builtins.py
${PYSITELIB}/pygments/lexers/_postgres_builtins.pyc
${PYSITELIB}/pygments/lexers/_postgres_builtins.pyo
-${PYSITELIB}/pygments/lexers/_robotframeworklexer.py
-${PYSITELIB}/pygments/lexers/_robotframeworklexer.pyc
-${PYSITELIB}/pygments/lexers/_robotframeworklexer.pyo
${PYSITELIB}/pygments/lexers/_scilab_builtins.py
${PYSITELIB}/pygments/lexers/_scilab_builtins.pyc
${PYSITELIB}/pygments/lexers/_scilab_builtins.pyo
-${PYSITELIB}/pygments/lexers/_sourcemodbuiltins.py
-${PYSITELIB}/pygments/lexers/_sourcemodbuiltins.pyc
-${PYSITELIB}/pygments/lexers/_sourcemodbuiltins.pyo
+${PYSITELIB}/pygments/lexers/_sourcemod_builtins.py
+${PYSITELIB}/pygments/lexers/_sourcemod_builtins.pyc
+${PYSITELIB}/pygments/lexers/_sourcemod_builtins.pyo
${PYSITELIB}/pygments/lexers/_stan_builtins.py
${PYSITELIB}/pygments/lexers/_stan_builtins.pyc
${PYSITELIB}/pygments/lexers/_stan_builtins.pyo
-${PYSITELIB}/pygments/lexers/_vimbuiltins.py
-${PYSITELIB}/pygments/lexers/_vimbuiltins.pyc
-${PYSITELIB}/pygments/lexers/_vimbuiltins.pyo
+${PYSITELIB}/pygments/lexers/_vim_builtins.py
+${PYSITELIB}/pygments/lexers/_vim_builtins.pyc
+${PYSITELIB}/pygments/lexers/_vim_builtins.pyo
+${PYSITELIB}/pygments/lexers/actionscript.py
+${PYSITELIB}/pygments/lexers/actionscript.pyc
+${PYSITELIB}/pygments/lexers/actionscript.pyo
${PYSITELIB}/pygments/lexers/agile.py
${PYSITELIB}/pygments/lexers/agile.pyc
${PYSITELIB}/pygments/lexers/agile.pyo
+${PYSITELIB}/pygments/lexers/algebra.py
+${PYSITELIB}/pygments/lexers/algebra.pyc
+${PYSITELIB}/pygments/lexers/algebra.pyo
+${PYSITELIB}/pygments/lexers/ambient.py
+${PYSITELIB}/pygments/lexers/ambient.pyc
+${PYSITELIB}/pygments/lexers/ambient.pyo
+${PYSITELIB}/pygments/lexers/apl.py
+${PYSITELIB}/pygments/lexers/apl.pyc
+${PYSITELIB}/pygments/lexers/apl.pyo
${PYSITELIB}/pygments/lexers/asm.py
${PYSITELIB}/pygments/lexers/asm.pyc
${PYSITELIB}/pygments/lexers/asm.pyo
+${PYSITELIB}/pygments/lexers/automation.py
+${PYSITELIB}/pygments/lexers/automation.pyc
+${PYSITELIB}/pygments/lexers/automation.pyo
+${PYSITELIB}/pygments/lexers/basic.py
+${PYSITELIB}/pygments/lexers/basic.pyc
+${PYSITELIB}/pygments/lexers/basic.pyo
+${PYSITELIB}/pygments/lexers/business.py
+${PYSITELIB}/pygments/lexers/business.pyc
+${PYSITELIB}/pygments/lexers/business.pyo
+${PYSITELIB}/pygments/lexers/c_cpp.py
+${PYSITELIB}/pygments/lexers/c_cpp.pyc
+${PYSITELIB}/pygments/lexers/c_cpp.pyo
+${PYSITELIB}/pygments/lexers/c_like.py
+${PYSITELIB}/pygments/lexers/c_like.pyc
+${PYSITELIB}/pygments/lexers/c_like.pyo
+${PYSITELIB}/pygments/lexers/chapel.py
+${PYSITELIB}/pygments/lexers/chapel.pyc
+${PYSITELIB}/pygments/lexers/chapel.pyo
${PYSITELIB}/pygments/lexers/compiled.py
${PYSITELIB}/pygments/lexers/compiled.pyc
${PYSITELIB}/pygments/lexers/compiled.pyo
+${PYSITELIB}/pygments/lexers/configs.py
+${PYSITELIB}/pygments/lexers/configs.pyc
+${PYSITELIB}/pygments/lexers/configs.pyo
+${PYSITELIB}/pygments/lexers/console.py
+${PYSITELIB}/pygments/lexers/console.pyc
+${PYSITELIB}/pygments/lexers/console.pyo
+${PYSITELIB}/pygments/lexers/css.py
+${PYSITELIB}/pygments/lexers/css.pyc
+${PYSITELIB}/pygments/lexers/css.pyo
+${PYSITELIB}/pygments/lexers/d.py
+${PYSITELIB}/pygments/lexers/d.pyc
+${PYSITELIB}/pygments/lexers/d.pyo
${PYSITELIB}/pygments/lexers/dalvik.py
${PYSITELIB}/pygments/lexers/dalvik.pyc
${PYSITELIB}/pygments/lexers/dalvik.pyo
+${PYSITELIB}/pygments/lexers/data.py
+${PYSITELIB}/pygments/lexers/data.pyc
+${PYSITELIB}/pygments/lexers/data.pyo
+${PYSITELIB}/pygments/lexers/diff.py
+${PYSITELIB}/pygments/lexers/diff.pyc
+${PYSITELIB}/pygments/lexers/diff.pyo
${PYSITELIB}/pygments/lexers/dotnet.py
${PYSITELIB}/pygments/lexers/dotnet.pyc
${PYSITELIB}/pygments/lexers/dotnet.pyo
+${PYSITELIB}/pygments/lexers/dsls.py
+${PYSITELIB}/pygments/lexers/dsls.pyc
+${PYSITELIB}/pygments/lexers/dsls.pyo
+${PYSITELIB}/pygments/lexers/dylan.py
+${PYSITELIB}/pygments/lexers/dylan.pyc
+${PYSITELIB}/pygments/lexers/dylan.pyo
+${PYSITELIB}/pygments/lexers/ecl.py
+${PYSITELIB}/pygments/lexers/ecl.pyc
+${PYSITELIB}/pygments/lexers/ecl.pyo
+${PYSITELIB}/pygments/lexers/eiffel.py
+${PYSITELIB}/pygments/lexers/eiffel.pyc
+${PYSITELIB}/pygments/lexers/eiffel.pyo
+${PYSITELIB}/pygments/lexers/erlang.py
+${PYSITELIB}/pygments/lexers/erlang.pyc
+${PYSITELIB}/pygments/lexers/erlang.pyo
+${PYSITELIB}/pygments/lexers/esoteric.py
+${PYSITELIB}/pygments/lexers/esoteric.pyc
+${PYSITELIB}/pygments/lexers/esoteric.pyo
+${PYSITELIB}/pygments/lexers/factor.py
+${PYSITELIB}/pygments/lexers/factor.pyc
+${PYSITELIB}/pygments/lexers/factor.pyo
+${PYSITELIB}/pygments/lexers/fantom.py
+${PYSITELIB}/pygments/lexers/fantom.pyc
+${PYSITELIB}/pygments/lexers/fantom.pyo
+${PYSITELIB}/pygments/lexers/felix.py
+${PYSITELIB}/pygments/lexers/felix.pyc
+${PYSITELIB}/pygments/lexers/felix.pyo
+${PYSITELIB}/pygments/lexers/fortran.py
+${PYSITELIB}/pygments/lexers/fortran.pyc
+${PYSITELIB}/pygments/lexers/fortran.pyo
${PYSITELIB}/pygments/lexers/foxpro.py
${PYSITELIB}/pygments/lexers/foxpro.pyc
${PYSITELIB}/pygments/lexers/foxpro.pyo
${PYSITELIB}/pygments/lexers/functional.py
${PYSITELIB}/pygments/lexers/functional.pyc
${PYSITELIB}/pygments/lexers/functional.pyo
+${PYSITELIB}/pygments/lexers/go.py
+${PYSITELIB}/pygments/lexers/go.pyc
+${PYSITELIB}/pygments/lexers/go.pyo
+${PYSITELIB}/pygments/lexers/graph.py
+${PYSITELIB}/pygments/lexers/graph.pyc
+${PYSITELIB}/pygments/lexers/graph.pyo
+${PYSITELIB}/pygments/lexers/graphics.py
+${PYSITELIB}/pygments/lexers/graphics.pyc
+${PYSITELIB}/pygments/lexers/graphics.pyo
+${PYSITELIB}/pygments/lexers/haskell.py
+${PYSITELIB}/pygments/lexers/haskell.pyc
+${PYSITELIB}/pygments/lexers/haskell.pyo
+${PYSITELIB}/pygments/lexers/haxe.py
+${PYSITELIB}/pygments/lexers/haxe.pyc
+${PYSITELIB}/pygments/lexers/haxe.pyo
${PYSITELIB}/pygments/lexers/hdl.py
${PYSITELIB}/pygments/lexers/hdl.pyc
${PYSITELIB}/pygments/lexers/hdl.pyo
+${PYSITELIB}/pygments/lexers/html.py
+${PYSITELIB}/pygments/lexers/html.pyc
+${PYSITELIB}/pygments/lexers/html.pyo
+${PYSITELIB}/pygments/lexers/idl.py
+${PYSITELIB}/pygments/lexers/idl.pyc
+${PYSITELIB}/pygments/lexers/idl.pyo
+${PYSITELIB}/pygments/lexers/igor.py
+${PYSITELIB}/pygments/lexers/igor.pyc
+${PYSITELIB}/pygments/lexers/igor.pyo
+${PYSITELIB}/pygments/lexers/inferno.py
+${PYSITELIB}/pygments/lexers/inferno.pyc
+${PYSITELIB}/pygments/lexers/inferno.pyo
+${PYSITELIB}/pygments/lexers/installers.py
+${PYSITELIB}/pygments/lexers/installers.pyc
+${PYSITELIB}/pygments/lexers/installers.pyo
+${PYSITELIB}/pygments/lexers/int_fiction.py
+${PYSITELIB}/pygments/lexers/int_fiction.pyc
+${PYSITELIB}/pygments/lexers/int_fiction.pyo
+${PYSITELIB}/pygments/lexers/iolang.py
+${PYSITELIB}/pygments/lexers/iolang.pyc
+${PYSITELIB}/pygments/lexers/iolang.pyo
+${PYSITELIB}/pygments/lexers/javascript.py
+${PYSITELIB}/pygments/lexers/javascript.pyc
+${PYSITELIB}/pygments/lexers/javascript.pyo
+${PYSITELIB}/pygments/lexers/julia.py
+${PYSITELIB}/pygments/lexers/julia.pyc
+${PYSITELIB}/pygments/lexers/julia.pyo
${PYSITELIB}/pygments/lexers/jvm.py
${PYSITELIB}/pygments/lexers/jvm.pyc
${PYSITELIB}/pygments/lexers/jvm.pyo
+${PYSITELIB}/pygments/lexers/lisp.py
+${PYSITELIB}/pygments/lexers/lisp.pyc
+${PYSITELIB}/pygments/lexers/lisp.pyo
+${PYSITELIB}/pygments/lexers/make.py
+${PYSITELIB}/pygments/lexers/make.pyc
+${PYSITELIB}/pygments/lexers/make.pyo
+${PYSITELIB}/pygments/lexers/markup.py
+${PYSITELIB}/pygments/lexers/markup.pyc
+${PYSITELIB}/pygments/lexers/markup.pyo
${PYSITELIB}/pygments/lexers/math.py
${PYSITELIB}/pygments/lexers/math.pyc
${PYSITELIB}/pygments/lexers/math.pyo
+${PYSITELIB}/pygments/lexers/matlab.py
+${PYSITELIB}/pygments/lexers/matlab.pyc
+${PYSITELIB}/pygments/lexers/matlab.pyo
+${PYSITELIB}/pygments/lexers/ml.py
+${PYSITELIB}/pygments/lexers/ml.pyc
+${PYSITELIB}/pygments/lexers/ml.pyo
+${PYSITELIB}/pygments/lexers/modeling.py
+${PYSITELIB}/pygments/lexers/modeling.pyc
+${PYSITELIB}/pygments/lexers/modeling.pyo
+${PYSITELIB}/pygments/lexers/nimrod.py
+${PYSITELIB}/pygments/lexers/nimrod.pyc
+${PYSITELIB}/pygments/lexers/nimrod.pyo
+${PYSITELIB}/pygments/lexers/nit.py
+${PYSITELIB}/pygments/lexers/nit.pyc
+${PYSITELIB}/pygments/lexers/nit.pyo
+${PYSITELIB}/pygments/lexers/nix.py
+${PYSITELIB}/pygments/lexers/nix.pyc
+${PYSITELIB}/pygments/lexers/nix.pyo
+${PYSITELIB}/pygments/lexers/objective.py
+${PYSITELIB}/pygments/lexers/objective.pyc
+${PYSITELIB}/pygments/lexers/objective.pyo
+${PYSITELIB}/pygments/lexers/ooc.py
+${PYSITELIB}/pygments/lexers/ooc.pyc
+${PYSITELIB}/pygments/lexers/ooc.pyo
${PYSITELIB}/pygments/lexers/other.py
${PYSITELIB}/pygments/lexers/other.pyc
${PYSITELIB}/pygments/lexers/other.pyo
${PYSITELIB}/pygments/lexers/parsers.py
${PYSITELIB}/pygments/lexers/parsers.pyc
${PYSITELIB}/pygments/lexers/parsers.pyo
+${PYSITELIB}/pygments/lexers/pascal.py
+${PYSITELIB}/pygments/lexers/pascal.pyc
+${PYSITELIB}/pygments/lexers/pascal.pyo
+${PYSITELIB}/pygments/lexers/pawn.py
+${PYSITELIB}/pygments/lexers/pawn.pyc
+${PYSITELIB}/pygments/lexers/pawn.pyo
+${PYSITELIB}/pygments/lexers/perl.py
+${PYSITELIB}/pygments/lexers/perl.pyc
+${PYSITELIB}/pygments/lexers/perl.pyo
+${PYSITELIB}/pygments/lexers/php.py
+${PYSITELIB}/pygments/lexers/php.pyc
+${PYSITELIB}/pygments/lexers/php.pyo
+${PYSITELIB}/pygments/lexers/prolog.py
+${PYSITELIB}/pygments/lexers/prolog.pyc
+${PYSITELIB}/pygments/lexers/prolog.pyo
+${PYSITELIB}/pygments/lexers/python.py
+${PYSITELIB}/pygments/lexers/python.pyc
Home |
Main Index |
Thread Index |
Old Index