We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3730803 commit 47ad4d9Copy full SHA for 47ad4d9
docs/sphinx/precompiling.md
@@ -1,13 +1,11 @@
1
# Precompiling
2
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.
+Precompiling is compiling Python source files (`.py` files) into byte code
+(`.pyc` files) at build time instead of runtime. Doing it at build time can
+improve performance by skipping that work at runtime.
10
+Precompiling is disabled by default, so you must enable it using flags or
+attributes to use it.
11
12
## Overhead of precompiling
13
0 commit comments