File tree 2 files changed +4
-5
lines changed
2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -157,7 +157,6 @@ Doc/reference/datamodel.rst
157
157
Doc/reference/expressions.rst
158
158
Doc/reference/import.rst
159
159
Doc/reference/simple_stmts.rst
160
- Doc/tutorial/appendix.rst
161
160
Doc/tutorial/controlflow.rst
162
161
Doc/tutorial/datastructures.rst
163
162
Doc/tutorial/introduction.rst
Original file line number Diff line number Diff line change @@ -101,8 +101,8 @@ in the script::
101
101
The Customization Modules
102
102
-------------------------
103
103
104
- Python provides two hooks to let you customize it: :mod : `sitecustomize ` and
105
- :mod : `usercustomize `. To see how it works, you need first to find the location
104
+ Python provides two hooks to let you customize it: :index : `sitecustomize ` and
105
+ :index : `usercustomize `. To see how it works, you need first to find the location
106
106
of your user site-packages directory. Start Python and run this code::
107
107
108
108
>>> import site
@@ -113,9 +113,9 @@ Now you can create a file named :file:`usercustomize.py` in that directory and
113
113
put anything you want in it. It will affect every invocation of Python, unless
114
114
it is started with the :option: `-s ` option to disable the automatic import.
115
115
116
- :mod : `sitecustomize ` works in the same way, but is typically created by an
116
+ :index : `sitecustomize ` works in the same way, but is typically created by an
117
117
administrator of the computer in the global site-packages directory, and is
118
- imported before :mod : `usercustomize `. See the documentation of the :mod: `site `
118
+ imported before :index : `usercustomize `. See the documentation of the :mod: `site `
119
119
module for more details.
120
120
121
121
You can’t perform that action at this time.
0 commit comments