File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -191,6 +191,7 @@ LIBFILES= $(MANSTYLES) $(COMMONTEX) \
191191 ../lib/internet.tex \
192192 ../lib/netdata.tex \
193193 ../lib/markup.tex \
194+ ../lib/language.tex \
194195 ../lib/libpycompile.tex \
195196 ../lib/libcompileall.tex \
196197 ../lib/libshlex.tex \
Original file line number Diff line number Diff line change 1+ \chapter {Python Language Services
2+ \label {language } }
3+
4+ Python provides a number of modules to assist in working with the
5+ Python language. These module support tokenizing, parsing, syntax
6+ analysis, bytecode disassembly, and various other facilities.
7+
8+ These modules include:
9+
10+ \localmoduletable
Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ \chapter*{Front Matter\label{front}}
7171\input {libexcs }
7272\input {libfuncs }
7373
74- \input {libpython } % Python Services
74+ \input {libpython } % Python Runtime Services
7575\input {libsys }
7676\input {libgc }
7777\input {libatexit }
@@ -87,20 +87,10 @@ \chapter*{Front Matter\label{front}}
8787\input {libmarshal }
8888\input {libimp }
8989% \input{libni}
90- \input {libparser }
91- \input {libsymbol }
92- \input {libtoken }
93- \input {libkeyword }
94- \input {libtokenize }
95- \input {libtabnanny }
96- \input {libpyclbr }
9790\input {libcode }
9891\input {libcodeop }
9992\input {libpprint }
10093\input {librepr }
101- \input {libpycompile } % really py_compile
102- \input {libcompileall }
103- \input {libdis }
10494\input {libnew }
10595\input {libsite }
10696\input {libuser }
@@ -243,10 +233,6 @@ \chapter*{Front Matter\label{front}}
243233\input {libxmllib }
244234\input {libpyexpat }
245235
246- \input {librestricted } % Restricted Execution
247- \input {librexec }
248- \input {libbastion }
249-
250236\input {libmm } % Multimedia Services
251237\input {libaudioop }
252238\input {libimageop }
@@ -265,6 +251,22 @@ \chapter*{Front Matter\label{front}}
265251\input {libmpz }
266252\input {librotor }
267253
254+ \input {librestricted } % Restricted Execution
255+ \input {librexec }
256+ \input {libbastion }
257+
258+ \input {language } % Python Language Services
259+ \input {libparser }
260+ \input {libsymbol }
261+ \input {libtoken }
262+ \input {libkeyword }
263+ \input {libtokenize }
264+ \input {libtabnanny }
265+ \input {libpyclbr }
266+ \input {libpycompile } % really py_compile
267+ \input {libcompileall }
268+ \input {libdis }
269+
268270% \input{libamoeba} % AMOEBA ONLY
269271
270272% \input{libstdwin} % STDWIN ONLY
Original file line number Diff line number Diff line change 1- \chapter {Python Services }
2- \label {python }
1+ \chapter {Python Runtime Services
2+ \label {python } }
33
44The modules described in this chapter provide a wide range of services
55related to the Python interpreter and its interaction with its
You can’t perform that action at this time.
0 commit comments