don't produce *.pyc files

Producing man pages is done infrequently (basically just at `make test`
and `make install`) so there isn't any point in writing compiled
byte-code versions of the python modules.
This commit is contained in:
Kurtis Rader 2016-10-09 14:11:04 -07:00
parent 30e56c0237
commit 213ef3ee56
2 changed files with 16 additions and 16 deletions

View file

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python -B
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# Run me like this: ./create_manpage_completions.py /usr/share/man/man{1,8}/* > man_completions.fish # Run me like this: ./create_manpage_completions.py /usr/share/man/man{1,8}/* > man_completions.fish

View file

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python -B
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
""" Deroff.py, ported to Python from the venerable deroff.c """ """ Deroff.py, ported to Python from the venerable deroff.c """