Skip to content
This repository has been archived by the owner on May 21, 2024. It is now read-only.

Commit

Permalink
Merge pull request boriel-basic#282 from kosarev/issue281_fix_shebangs
Browse files Browse the repository at this point in the history
[boriel-basic#281] Fix Python shebangs.
  • Loading branch information
boriel committed May 4, 2020
2 parents 6a894c3 + 5d2ea32 commit 2db1fea
Show file tree
Hide file tree
Showing 29 changed files with 29 additions and 29 deletions.
2 changes: 1 addition & 1 deletion arch/zx48k/beep.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# vim:ts=4:et:sw=4:

Expand Down
2 changes: 1 addition & 1 deletion arch/zx48k/peephole/engine.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

import sys
Expand Down
2 changes: 1 addition & 1 deletion arch/zx48k/peephole/parser.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

import sys
Expand Down
2 changes: 1 addition & 1 deletion asmlex.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# vim:ts=4:et:

Expand Down
2 changes: 1 addition & 1 deletion basic.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/python3
# -*- coding: utf-8 -*-

# -------------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion outfmt/tap.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

# --------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion outfmt/tzx.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

# --------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion tests/api/test_symbolTable.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

import unittest
Expand Down
2 changes: 1 addition & 1 deletion tests/functional/test.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# vim:ts=4:et:ai:

Expand Down
2 changes: 1 addition & 1 deletion tests/functional/test_.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
# vim:ts=4:et:ai

import sys
Expand Down
2 changes: 1 addition & 1 deletion tests/symbols/test_symbolARGLIST.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

import unittest
Expand Down
2 changes: 1 addition & 1 deletion tests/symbols/test_symbolBASICTYPE.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

import unittest
Expand Down
2 changes: 1 addition & 1 deletion tests/symbols/test_symbolBOUND.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

import unittest
Expand Down
2 changes: 1 addition & 1 deletion tests/symbols/test_symbolBOUNDLIST.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

import unittest
Expand Down
2 changes: 1 addition & 1 deletion tests/symbols/test_symbolFUNCDECL.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

import unittest
Expand Down
2 changes: 1 addition & 1 deletion tests/symbols/test_symbolFUNCTION.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

import unittest
Expand Down
2 changes: 1 addition & 1 deletion tests/symbols/test_symbolNUMBER.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

import unittest
Expand Down
2 changes: 1 addition & 1 deletion tests/symbols/test_symbolSTRING.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

import unittest
Expand Down
2 changes: 1 addition & 1 deletion tests/symbols/test_symbolSTRSLICE.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

import unittest
Expand Down
2 changes: 1 addition & 1 deletion tests/symbols/test_symbolTYPE.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

import unittest
Expand Down
2 changes: 1 addition & 1 deletion tests/symbols/test_symbolTYPEALIAS.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

import unittest
Expand Down
2 changes: 1 addition & 1 deletion tests/symbols/test_symbolVAR.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

import unittest
Expand Down
2 changes: 1 addition & 1 deletion zxb.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# vim: ts=4:sw=4:et:

Expand Down
2 changes: 1 addition & 1 deletion zxbasm.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# vim: ts=4:et:sw=4

Expand Down
2 changes: 1 addition & 1 deletion zxbasmpplex.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/python3
# -*- coding: utf-8 -*-

# ----------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion zxblex.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# vim:ts=4:et:sw=4

Expand Down
2 changes: 1 addition & 1 deletion zxbparser.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# vim: ts=4:et:sw=4:

Expand Down
2 changes: 1 addition & 1 deletion zxbpp.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# vim: ts=4:sw=4:et:

Expand Down
2 changes: 1 addition & 1 deletion zxbpplex.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

# ----------------------------------------------------------------------
Expand Down

0 comments on commit 2db1fea

Please sign in to comment.