split platform
This commit is contained in:
commit
8c9b09577d
2261 changed files with 676163 additions and 0 deletions
|
|
@ -0,0 +1,7 @@
|
|||
|
||||
pycparser is a complete parser of the C language, written in
|
||||
pure Python using the PLY parsing library.
|
||||
It parses C code into an AST and can serve as a front-end for
|
||||
C compilers or analysis tools.
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
Metadata-Version: 2.0
|
||||
Name: pycparser
|
||||
Version: 2.14
|
||||
Summary: C parser in Python
|
||||
Home-page: https://github.com/eliben/pycparser
|
||||
Author: Eli Bendersky
|
||||
Author-email: eliben@gmail.com
|
||||
License: BSD
|
||||
Platform: Cross Platform
|
||||
Classifier: Programming Language :: Python :: 2
|
||||
Classifier: Programming Language :: Python :: 3
|
||||
|
||||
|
||||
pycparser is a complete parser of the C language, written in
|
||||
pure Python using the PLY parsing library.
|
||||
It parses C code into an AST and can serve as a front-end for
|
||||
C compilers or analysis tools.
|
||||
|
||||
|
||||
39
lib/python3.5/site-packages/pycparser-2.14.dist-info/RECORD
Normal file
39
lib/python3.5/site-packages/pycparser-2.14.dist-info/RECORD
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
pycparser/__init__.py,sha256=flr4GZslzvdCqw_xGgKv1pAS8xNGmFZukMWFcVTbTlc,2903
|
||||
pycparser/_ast_gen.py,sha256=EpAy62To3BkqKF3NYSY9a-tQ47mgZfdkbeRLIfkWFjM,8663
|
||||
pycparser/_build_tables.py,sha256=geSWhHnwKOJGcIY3FuCqQ9Q6uE5SNNTpYjcT-8ET8cE,851
|
||||
pycparser/_c_ast.cfg,sha256=HiSiSINmniPg64bRv_agXMZKe9t829E52-lG5t8kEW0,4180
|
||||
pycparser/ast_transforms.py,sha256=u27rgmtxvrW8mJFS8RzcPXHMqm6nMJ--lBCC5ycJpks,3568
|
||||
pycparser/c_ast.py,sha256=kUAjWacSSib_TNWAxYUiwfTCyTpYfDrwcNNNlPoM4VY,23336
|
||||
pycparser/c_generator.py,sha256=hYmwtsfN2P2w45ULwWt4DYxa6_fx20D8N-KT9813qfk,13570
|
||||
pycparser/c_lexer.py,sha256=H2exRZiwXPuhAYWn2mGU55ib9SK17Ohsqz6CBJONLBY,14447
|
||||
pycparser/c_parser.py,sha256=xAwiskgm8gcgGmuCYzL-sV_oZZ17qNrswuok7vEJF5k,62212
|
||||
pycparser/lextab.py,sha256=03GmykDPpfATUZ2IDm1T7djRqbwqaizVj3PIFryHcQo,7457
|
||||
pycparser/plyparser.py,sha256=WWl3-LvavP6tzeVo-G8Ed4mZHB13G2_epv0YH1-fVac,1594
|
||||
pycparser/yacctab.py,sha256=uiypVJpou4bIFmvAVeL_5IWJssv88E4mtx0fs4QwlgU,129568
|
||||
pycparser/__pycache__/__init__.cpython-35.pyc,sha256=BoHN7g7rcRoGt1_1duUbG6SYuTa24rwUV05o43zWDtU,2555
|
||||
pycparser/__pycache__/_ast_gen.cpython-35.pyc,sha256=3UcRgmXI-qP-MCsxktcbHAfDRbCndEG9sS9N1sKZx_c,9044
|
||||
pycparser/__pycache__/ast_transforms.cpython-35.pyc,sha256=xpPX1W0K6NykUHhDdpNQ3r0r8msiQgPF3aVV3f8VHPY,2579
|
||||
pycparser/__pycache__/c_ast.cpython-35.pyc,sha256=IFdCLlLFJH1BdcgYbdD9_mmSVg_TJTLk8nqm2CSjXg8,32787
|
||||
pycparser/__pycache__/c_lexer.cpython-35.pyc,sha256=tj-X-j4lMYJLtPBGdEmKdYkTT0gor3ndoizYfqv0xbE,12953
|
||||
pycparser/__pycache__/c_parser.cpython-35.pyc,sha256=_T7NPOo9myH07gT7wlHHT_KixsKx7AmLZAwzC3cUdvQ,58826
|
||||
pycparser/__pycache__/lextab.cpython-35.pyc,sha256=DZkIx0-aD-pMm22hMJfrhDfEc4QzH7zKIjHVOQE2Csg,6496
|
||||
pycparser/__pycache__/plyparser.cpython-35.pyc,sha256=IEej0ccj3a-z8yGML8Ul5xuFm4fhmIxjsEqVkTHmWcM,2170
|
||||
pycparser/__pycache__/yacctab.cpython-35.pyc,sha256=rSrZiNeOlCY2c66RF2OCoq__3VrlIucvlbHmxMjccKk,105512
|
||||
pycparser/ply/__init__.py,sha256=u7QEmRUe9u70CISCfE5FKVyc-k0r-Lx7OQYRUjm0pWc,82
|
||||
pycparser/ply/cpp.py,sha256=nERhk2D_-_K65p1159_Wyfv6WA8uNCnBcX5QsRntFQY,33040
|
||||
pycparser/ply/ctokens.py,sha256=t4MtLYJ_J7X-24-s04bRjJ9by2xGr72EGdnRXbiQZTQ,3170
|
||||
pycparser/ply/lex.py,sha256=xuUgEVM129pHAde44-HhumCKr5awmsJX36Y7bF56SX0,40739
|
||||
pycparser/ply/yacc.py,sha256=Q0uoJBdSWqolnmpfh1dvNPWC9CXBaH6LEwrzbfxEQfs,128492
|
||||
pycparser/ply/__pycache__/__init__.cpython-35.pyc,sha256=cZrZq2YwAQysfYBkmHqiebiXIorcJBftZWsLlYdQX7c,140
|
||||
pycparser/ply/__pycache__/lex.cpython-35.pyc,sha256=Prc2QxV9Zgf8PNEO3CfciADJx7HRy8N9wrb5RegqlzQ,23755
|
||||
pycparser/ply/__pycache__/yacc.cpython-35.pyc,sha256=VOFkX_sPDrDYmkmneUrDA7F32ql-2afA-ZI2sUvfnrQ,57642
|
||||
pycparser-2.14.dist-info/DESCRIPTION.rst,sha256=ymq7G5dnWAjINGKDSTb6SPp8jcmicORge4kNjfPqJ74,200
|
||||
pycparser-2.14.dist-info/METADATA,sha256=ln4sRLM3pr7yIuHmXtcwjuKPm-iR3wav2P1hpBNrWZE,515
|
||||
pycparser-2.14.dist-info/RECORD,,
|
||||
pycparser-2.14.dist-info/WHEEL,sha256=zX7PHtH_7K-lEzyK75et0UBa3Bj8egCBMXe1M4gc6SU,92
|
||||
pycparser-2.14.dist-info/metadata.json,sha256=PuandFm6CGizwAPHGwbWrRvokG9x273YZZxzC7JRA-A,523
|
||||
pycparser-2.14.dist-info/top_level.txt,sha256=c-lPcS74L_8KoH7IE6PQF5ofyirRQNV4VhkbSFIPeWM,10
|
||||
pycparser/ply/__pycache__/cpp.cpython-35.pyc,,
|
||||
pycparser/__pycache__/_build_tables.cpython-35.pyc,,
|
||||
pycparser/ply/__pycache__/ctokens.cpython-35.pyc,,
|
||||
pycparser/__pycache__/c_generator.cpython-35.pyc,,
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
Wheel-Version: 1.0
|
||||
Generator: bdist_wheel (0.26.0)
|
||||
Root-Is-Purelib: true
|
||||
Tag: py3-none-any
|
||||
|
||||
|
|
@ -0,0 +1 @@
|
|||
{"generator": "bdist_wheel (0.26.0)", "summary": "C parser in Python", "classifiers": ["Programming Language :: Python :: 2", "Programming Language :: Python :: 3"], "extensions": {"python.details": {"project_urls": {"Home": "https://github.com/eliben/pycparser"}, "contacts": [{"email": "eliben@gmail.com", "name": "Eli Bendersky", "role": "author"}], "document_names": {"description": "DESCRIPTION.rst"}}}, "license": "BSD", "metadata_version": "2.0", "name": "pycparser", "platform": "Cross Platform", "version": "2.14"}
|
||||
|
|
@ -0,0 +1 @@
|
|||
pycparser
|
||||
Loading…
Add table
Add a link
Reference in a new issue