ICU-20062 Set the Python -B flag to inhibit the writing of .pyc files.

This will prevent littering the source tree with spurious .pyc files.
The potential faster execution when re-running a script that has an
up-to-date .pyc file is negligible.
This commit is contained in:
Fredrik Roubert 2018-08-06 14:22:35 +02:00 committed by Shane Carr
parent 23389e756c
commit 12e2a72747
No known key found for this signature in database
GPG Key ID: FCED3B24AAB18B5C
10 changed files with 10 additions and 10 deletions

View File

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/python -B
# Copyright (C) 2016 and later: Unicode, Inc. and others.
# License & terms of use: http://www.unicode.org/copyright.html

View File

@ -1,4 +1,4 @@
#! /usr/bin/python
#! /usr/bin/python -B
# -*- coding: utf-8 -*-
#
# Copyright (C) 2016 and later: Unicode, Inc. and others.

View File

@ -1,4 +1,4 @@
#! /usr/bin/python
#! /usr/bin/python -B
# -*- coding: utf-8 -*-
#
# Copyright (C) 2016 and later: Unicode, Inc. and others.

View File

@ -1,4 +1,4 @@
#! /usr/bin/python
#! /usr/bin/python -B
# Copyright (C) 2016 and later: Unicode, Inc. and others.
# License & terms of use: http://www.unicode.org/copyright.html

View File

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/python -B
# -*- coding: utf-8 -*-
#

View File

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/python -B
#
# Copyright (C) 2017 and later: Unicode, Inc. and others.
# License & terms of use: http://www.unicode.org/copyright.html

View File

@ -1,4 +1,4 @@
#!/usr/bin/python2.4
#!/usr/bin/python2.4 -B
#
# Copyright (C) 2017 and later: Unicode, Inc. and others.
# License & terms of use: http://www.unicode.org/copyright.html

View File

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/python -B
#
# Copyright (C) 2017 and later: Unicode, Inc. and others.
# License & terms of use: http://www.unicode.org/copyright.html

View File

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/python -B
# -*- coding: utf-8 -*-
#
# Copyright (C) 2017 and later: Unicode, Inc. and others.

View File

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/python -B
# -*- coding: utf-8 -*-
# © 2016 and later: Unicode, Inc. and others.
# License & terms of use: http://www.unicode.org/copyright.html