Selaa lähdekoodia

Get rid of .pyc (and possibly .pyo) files

Alois Mahdal 11 vuotta sitten
vanhempi
commit
b789148a13
1 muutettua tiedostoa jossa 3 lisäystä ja 0 poistoa
  1. 3
    0
      dotfiles/bash/global-before.bashrc

+ 3
- 0
dotfiles/bash/global-before.bashrc Näytä tiedosto

@@ -38,3 +38,6 @@ export GVFS_DISABLE_FUSE=1
38 38
 
39 39
 # disable the terrible beep sound (only for X; for tty?, blacklist pcspkr)
40 40
 [[ ${!DISPLAY[@]} ]] &&  xset b off
41
+
42
+# get rid of those .pyc files once and for all
43
+export PYTHONDONTWRITEBYTECODE=1