Skip to content

Commit 47ad4d9

Browse files
authored
docs: doc that precompiling is disabled by default (#1908)
The original PR accidentally said precompiling was enabledy by default.
1 parent 3730803 commit 47ad4d9

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

docs/sphinx/precompiling.md

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
# Precompiling
22

3-
Precompiling is compiling Python source files (`.py` files) into byte code (`.pyc`
4-
files) at build
5-
time instead of runtime. Doing it at build time can improve performance by
6-
skipping that work at runtime.
7-
8-
Precompiling is enabled by default, so there typically isn't anything special
9-
you must do to use it.
3+
Precompiling is compiling Python source files (`.py` files) into byte code
4+
(`.pyc` files) at build time instead of runtime. Doing it at build time can
5+
improve performance by skipping that work at runtime.
106

7+
Precompiling is disabled by default, so you must enable it using flags or
8+
attributes to use it.
119

1210
## Overhead of precompiling
1311

0 commit comments

Comments
 (0)