Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit ed13b4a

Browse files
committed
Break the "Python Services" chapter into two: "Python Runtime Services"
(still at the start of the manual), and "Python Language Services" (late in the manual). Moved "Restricted Execution" to just before "Python Language Services."
1 parent c253d9a commit ed13b4a

4 files changed

Lines changed: 30 additions & 17 deletions

File tree

Doc/Makefile.deps

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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 \

Doc/lib/language.tex

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
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

Doc/lib/lib.tex

Lines changed: 17 additions & 15 deletions
Original file line numberDiff line numberDiff 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

Doc/lib/libpython.tex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
\chapter{Python Services}
2-
\label{python}
1+
\chapter{Python Runtime Services
2+
\label{python}}
33

44
The modules described in this chapter provide a wide range of services
55
related to the Python interpreter and its interaction with its

0 commit comments

Comments
 (0)