fa45d8aa5f
- health_checklist.json: 192.168.1.122→node122
- ocr_client.py: docstring IP→node122
- docs/market-data-requirements.md: IP→node122
- 所有API调用通过ProxyHandler({})绕过系统代理
Privoxy对node122:18003返回500,直连正常
22 lines
698 B
Python
22 lines
698 B
Python
"""
|
|
pygments.lexers.math
|
|
~~~~~~~~~~~~~~~~~~~~
|
|
|
|
Just export lexers that were contained in this module.
|
|
|
|
:copyright: Copyright 2006-present by the Pygments team, see AUTHORS.
|
|
:license: BSD, see LICENSE for details.
|
|
"""
|
|
|
|
# ruff: noqa: F401
|
|
from pygments.lexers.python import NumPyLexer
|
|
from pygments.lexers.matlab import MatlabLexer, MatlabSessionLexer, \
|
|
OctaveLexer, ScilabLexer
|
|
from pygments.lexers.julia import JuliaLexer, JuliaConsoleLexer
|
|
from pygments.lexers.r import RConsoleLexer, SLexer, RdLexer
|
|
from pygments.lexers.modeling import BugsLexer, JagsLexer, StanLexer
|
|
from pygments.lexers.idl import IDLLexer
|
|
from pygments.lexers.algebra import MuPADLexer
|
|
|
|
__all__ = []
|