aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJustus Winter <[email protected]>2016-09-14 08:51:49 +0000
committerJustus Winter <[email protected]>2016-09-14 10:15:57 +0000
commit3b37c4efcf68657a856dbce60c0bd0fc78dd0770 (patch)
treeeb693ae9599bc2143d56c72142b7e4a8fc313b32
parentcore: New function gpgme_op_adduid. (diff)
downloadgpgme-3b37c4efcf68657a856dbce60c0bd0fc78dd0770.tar.gz
gpgme-3b37c4efcf68657a856dbce60c0bd0fc78dd0770.zip
python: Use more generic shebang.
-- Signed-off-by: Justus Winter <[email protected]>
Diffstat (limited to '')
-rw-r--r--lang/python/examples/assuan.py2
-rw-r--r--lang/python/examples/decryption-filter.py2
-rwxr-xr-xlang/python/examples/delkey.py2
-rwxr-xr-xlang/python/examples/encrypt-to-all.py2
-rwxr-xr-xlang/python/examples/exportimport.py2
-rwxr-xr-xlang/python/examples/genkey.py2
-rw-r--r--lang/python/examples/inter-edit.py2
-rwxr-xr-xlang/python/examples/sign.py2
-rwxr-xr-xlang/python/examples/signverify.py2
-rwxr-xr-xlang/python/examples/simple.py2
-rw-r--r--lang/python/examples/testCMSgetkey.py2
-rwxr-xr-xlang/python/examples/verifydetails.py2
-rwxr-xr-xlang/python/gpgme-h-clean.py2
-rwxr-xr-xlang/python/setup.py.in2
-rwxr-xr-xlang/python/tests/final.py2
-rwxr-xr-xlang/python/tests/initial.py2
-rwxr-xr-xlang/python/tests/t-callbacks.py2
-rwxr-xr-xlang/python/tests/t-data.py2
-rwxr-xr-xlang/python/tests/t-decrypt-verify.py2
-rwxr-xr-xlang/python/tests/t-decrypt.py2
-rwxr-xr-xlang/python/tests/t-edit.py2
-rwxr-xr-xlang/python/tests/t-encrypt-large.py2
-rwxr-xr-xlang/python/tests/t-encrypt-sign.py2
-rwxr-xr-xlang/python/tests/t-encrypt-sym.py2
-rwxr-xr-xlang/python/tests/t-encrypt.py2
-rwxr-xr-xlang/python/tests/t-export.py2
-rwxr-xr-xlang/python/tests/t-file-name.py2
-rwxr-xr-xlang/python/tests/t-idiomatic.py2
-rwxr-xr-xlang/python/tests/t-import.py2
-rwxr-xr-xlang/python/tests/t-keylist.py2
-rwxr-xr-xlang/python/tests/t-protocol-assuan.py2
-rwxr-xr-xlang/python/tests/t-sig-notation.py2
-rwxr-xr-xlang/python/tests/t-sign.py2
-rwxr-xr-xlang/python/tests/t-signers.py2
-rwxr-xr-xlang/python/tests/t-trustlist.py2
-rwxr-xr-xlang/python/tests/t-verify.py2
-rwxr-xr-xlang/python/tests/t-wait.py2
-rwxr-xr-xlang/python/tests/t-wrapper.py2
38 files changed, 38 insertions, 38 deletions
diff --git a/lang/python/examples/assuan.py b/lang/python/examples/assuan.py
index 82b1e1d7..e4822b72 100644
--- a/lang/python/examples/assuan.py
+++ b/lang/python/examples/assuan.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python3
+#!/usr/bin/env python
#
# Copyright (C) 2016 g10 Code GmbH
#
diff --git a/lang/python/examples/decryption-filter.py b/lang/python/examples/decryption-filter.py
index 1647ca3b..dbd66fc3 100644
--- a/lang/python/examples/decryption-filter.py
+++ b/lang/python/examples/decryption-filter.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python3
+#!/usr/bin/env python
#
# Copyright (C) 2016 g10 Code GmbH
#
diff --git a/lang/python/examples/delkey.py b/lang/python/examples/delkey.py
index e607f219..491f38a1 100755
--- a/lang/python/examples/delkey.py
+++ b/lang/python/examples/delkey.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python3
+#!/usr/bin/env python
#
# Copyright (C) 2016 g10 Code GmbH
# Copyright (C) 2004,2008 Igor Belyi <[email protected]>
diff --git a/lang/python/examples/encrypt-to-all.py b/lang/python/examples/encrypt-to-all.py
index 4586f938..304b4747 100755
--- a/lang/python/examples/encrypt-to-all.py
+++ b/lang/python/examples/encrypt-to-all.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python3
+#!/usr/bin/env python
#
# Copyright (C) 2016 g10 Code GmbH
# Copyright (C) 2008 Igor Belyi <[email protected]>
diff --git a/lang/python/examples/exportimport.py b/lang/python/examples/exportimport.py
index 39b1595c..8d76fa13 100755
--- a/lang/python/examples/exportimport.py
+++ b/lang/python/examples/exportimport.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python3
+#!/usr/bin/env python
#
# Copyright (C) 2016 g10 Code GmbH
# Copyright (C) 2004,2008 Igor Belyi <[email protected]>
diff --git a/lang/python/examples/genkey.py b/lang/python/examples/genkey.py
index 66e382bc..972fed79 100755
--- a/lang/python/examples/genkey.py
+++ b/lang/python/examples/genkey.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python3
+#!/usr/bin/env python
#
# Copyright (C) 2016 g10 Code GmbH
# Copyright (C) 2004 Igor Belyi <[email protected]>
diff --git a/lang/python/examples/inter-edit.py b/lang/python/examples/inter-edit.py
index 8199cc63..2f8e4efe 100644
--- a/lang/python/examples/inter-edit.py
+++ b/lang/python/examples/inter-edit.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python3
+#!/usr/bin/env python
#
# Copyright (C) 2016 g10 Code GmbH
# Copyright (C) 2005 Igor Belyi <[email protected]>
diff --git a/lang/python/examples/sign.py b/lang/python/examples/sign.py
index 0dd6a7c3..d3766833 100755
--- a/lang/python/examples/sign.py
+++ b/lang/python/examples/sign.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python3
+#!/usr/bin/env python
#
# Copyright (C) 2016 g10 Code GmbH
# Copyright (C) 2002 John Goerzen <[email protected]>
diff --git a/lang/python/examples/signverify.py b/lang/python/examples/signverify.py
index 7a24d719..e7bf0c94 100755
--- a/lang/python/examples/signverify.py
+++ b/lang/python/examples/signverify.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python3
+#!/usr/bin/env python
#
# Copyright (C) 2016 g10 Code GmbH
# Copyright (C) 2004,2008 Igor Belyi <[email protected]>
diff --git a/lang/python/examples/simple.py b/lang/python/examples/simple.py
index 50a3938b..ca72cf11 100755
--- a/lang/python/examples/simple.py
+++ b/lang/python/examples/simple.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python3
+#!/usr/bin/env python
#
# Copyright (C) 2016 g10 Code GmbH
# Copyright (C) 2005 Igor Belyi <[email protected]>
diff --git a/lang/python/examples/testCMSgetkey.py b/lang/python/examples/testCMSgetkey.py
index 7c642e68..fbaa042b 100644
--- a/lang/python/examples/testCMSgetkey.py
+++ b/lang/python/examples/testCMSgetkey.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python3
+#!/usr/bin/env python
#
# Copyright (C) 2016 g10 Code GmbH
# Copyright (C) 2008 Bernhard Reiter <[email protected]>
diff --git a/lang/python/examples/verifydetails.py b/lang/python/examples/verifydetails.py
index b57ed84f..1cd538c7 100755
--- a/lang/python/examples/verifydetails.py
+++ b/lang/python/examples/verifydetails.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python3
+#!/usr/bin/env python
#
# Copyright (C) 2016 g10 Code GmbH
# Copyright (C) 2004,2008 Igor Belyi <[email protected]>
diff --git a/lang/python/gpgme-h-clean.py b/lang/python/gpgme-h-clean.py
index b29b2e15..ce368f04 100755
--- a/lang/python/gpgme-h-clean.py
+++ b/lang/python/gpgme-h-clean.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python3
+#!/usr/bin/env python
# Copyright (C) 2016 g10 Code GmbH
# Copyright (C) 2004,2008 Igor Belyi <[email protected]>
diff --git a/lang/python/setup.py.in b/lang/python/setup.py.in
index 22035cbe..a9c76916 100755
--- a/lang/python/setup.py.in
+++ b/lang/python/setup.py.in
@@ -1,4 +1,4 @@
-#!/usr/bin/env python3
+#!/usr/bin/env python
# Copyright (C) 2016 g10 Code GmbH
# Copyright (C) 2004 Igor Belyi <[email protected]>
diff --git a/lang/python/tests/final.py b/lang/python/tests/final.py
index f75c2007..15010aff 100755
--- a/lang/python/tests/final.py
+++ b/lang/python/tests/final.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python3
+#!/usr/bin/env python
# Copyright (C) 2016 g10 Code GmbH
#
diff --git a/lang/python/tests/initial.py b/lang/python/tests/initial.py
index 169c3df4..7adaa919 100755
--- a/lang/python/tests/initial.py
+++ b/lang/python/tests/initial.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python3
+#!/usr/bin/env python
# Copyright (C) 2016 g10 Code GmbH
#
diff --git a/lang/python/tests/t-callbacks.py b/lang/python/tests/t-callbacks.py
index 3219463c..fc586831 100755
--- a/lang/python/tests/t-callbacks.py
+++ b/lang/python/tests/t-callbacks.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python3
+#!/usr/bin/env python
# Copyright (C) 2016 g10 Code GmbH
#
diff --git a/lang/python/tests/t-data.py b/lang/python/tests/t-data.py
index 3774f09d..6e05d130 100755
--- a/lang/python/tests/t-data.py
+++ b/lang/python/tests/t-data.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python3
+#!/usr/bin/env python
# Copyright (C) 2016 g10 Code GmbH
#
diff --git a/lang/python/tests/t-decrypt-verify.py b/lang/python/tests/t-decrypt-verify.py
index 0f615dc0..6518d792 100755
--- a/lang/python/tests/t-decrypt-verify.py
+++ b/lang/python/tests/t-decrypt-verify.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python3
+#!/usr/bin/env python
# Copyright (C) 2016 g10 Code GmbH
#
diff --git a/lang/python/tests/t-decrypt.py b/lang/python/tests/t-decrypt.py
index b5c47009..3b0c484d 100755
--- a/lang/python/tests/t-decrypt.py
+++ b/lang/python/tests/t-decrypt.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python3
+#!/usr/bin/env python
# Copyright (C) 2016 g10 Code GmbH
#
diff --git a/lang/python/tests/t-edit.py b/lang/python/tests/t-edit.py
index 64255c95..8bebe67f 100755
--- a/lang/python/tests/t-edit.py
+++ b/lang/python/tests/t-edit.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python3
+#!/usr/bin/env python
# Copyright (C) 2005 Igor Belyi <[email protected]>
# Copyright (C) 2016 g10 Code GmbH
diff --git a/lang/python/tests/t-encrypt-large.py b/lang/python/tests/t-encrypt-large.py
index 29f9de21..d5b9dc90 100755
--- a/lang/python/tests/t-encrypt-large.py
+++ b/lang/python/tests/t-encrypt-large.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python3
+#!/usr/bin/env python
# Copyright (C) 2016 g10 Code GmbH
#
diff --git a/lang/python/tests/t-encrypt-sign.py b/lang/python/tests/t-encrypt-sign.py
index 31cc94f0..8c4b5d93 100755
--- a/lang/python/tests/t-encrypt-sign.py
+++ b/lang/python/tests/t-encrypt-sign.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python3
+#!/usr/bin/env python
# Copyright (C) 2016 g10 Code GmbH
#
diff --git a/lang/python/tests/t-encrypt-sym.py b/lang/python/tests/t-encrypt-sym.py
index c5be183e..c279d6a8 100755
--- a/lang/python/tests/t-encrypt-sym.py
+++ b/lang/python/tests/t-encrypt-sym.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python3
+#!/usr/bin/env python
# Copyright (C) 2016 g10 Code GmbH
#
diff --git a/lang/python/tests/t-encrypt.py b/lang/python/tests/t-encrypt.py
index 4c77f39c..456f2c1a 100755
--- a/lang/python/tests/t-encrypt.py
+++ b/lang/python/tests/t-encrypt.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python3
+#!/usr/bin/env python
# Copyright (C) 2016 g10 Code GmbH
#
diff --git a/lang/python/tests/t-export.py b/lang/python/tests/t-export.py
index a102425c..f8d02f2f 100755
--- a/lang/python/tests/t-export.py
+++ b/lang/python/tests/t-export.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python3
+#!/usr/bin/env python
# Copyright (C) 2016 g10 Code GmbH
#
diff --git a/lang/python/tests/t-file-name.py b/lang/python/tests/t-file-name.py
index 6f9294eb..09eb1f98 100755
--- a/lang/python/tests/t-file-name.py
+++ b/lang/python/tests/t-file-name.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python3
+#!/usr/bin/env python
# Copyright (C) 2016 g10 Code GmbH
#
diff --git a/lang/python/tests/t-idiomatic.py b/lang/python/tests/t-idiomatic.py
index 726bbb93..6dbe6209 100755
--- a/lang/python/tests/t-idiomatic.py
+++ b/lang/python/tests/t-idiomatic.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python3
+#!/usr/bin/env python
# Copyright (C) 2016 g10 Code GmbH
#
diff --git a/lang/python/tests/t-import.py b/lang/python/tests/t-import.py
index 03b576bc..b267fc85 100755
--- a/lang/python/tests/t-import.py
+++ b/lang/python/tests/t-import.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python3
+#!/usr/bin/env python
# Copyright (C) 2016 g10 Code GmbH
#
diff --git a/lang/python/tests/t-keylist.py b/lang/python/tests/t-keylist.py
index 40d9c808..7b7bbaec 100755
--- a/lang/python/tests/t-keylist.py
+++ b/lang/python/tests/t-keylist.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python3
+#!/usr/bin/env python
# Copyright (C) 2016 g10 Code GmbH
#
diff --git a/lang/python/tests/t-protocol-assuan.py b/lang/python/tests/t-protocol-assuan.py
index 30907a1b..a86146b7 100755
--- a/lang/python/tests/t-protocol-assuan.py
+++ b/lang/python/tests/t-protocol-assuan.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python3
+#!/usr/bin/env python
# Copyright (C) 2016 g10 Code GmbH
#
diff --git a/lang/python/tests/t-sig-notation.py b/lang/python/tests/t-sig-notation.py
index b024bb5a..c5230065 100755
--- a/lang/python/tests/t-sig-notation.py
+++ b/lang/python/tests/t-sig-notation.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python3
+#!/usr/bin/env python
# Copyright (C) 2016 g10 Code GmbH
#
diff --git a/lang/python/tests/t-sign.py b/lang/python/tests/t-sign.py
index e066a29e..5f26ff35 100755
--- a/lang/python/tests/t-sign.py
+++ b/lang/python/tests/t-sign.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python3
+#!/usr/bin/env python
# Copyright (C) 2016 g10 Code GmbH
#
diff --git a/lang/python/tests/t-signers.py b/lang/python/tests/t-signers.py
index 9d2cbdc6..7b064c93 100755
--- a/lang/python/tests/t-signers.py
+++ b/lang/python/tests/t-signers.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python3
+#!/usr/bin/env python
# Copyright (C) 2016 g10 Code GmbH
#
diff --git a/lang/python/tests/t-trustlist.py b/lang/python/tests/t-trustlist.py
index a24eab8f..a33e35e6 100755
--- a/lang/python/tests/t-trustlist.py
+++ b/lang/python/tests/t-trustlist.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python3
+#!/usr/bin/env python
# Copyright (C) 2016 g10 Code GmbH
#
diff --git a/lang/python/tests/t-verify.py b/lang/python/tests/t-verify.py
index ed5a91a2..25c8c0c1 100755
--- a/lang/python/tests/t-verify.py
+++ b/lang/python/tests/t-verify.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python3
+#!/usr/bin/env python
# Copyright (C) 2016 g10 Code GmbH
#
diff --git a/lang/python/tests/t-wait.py b/lang/python/tests/t-wait.py
index 7eaa46ab..9f3a7edd 100755
--- a/lang/python/tests/t-wait.py
+++ b/lang/python/tests/t-wait.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python3
+#!/usr/bin/env python
# Copyright (C) 2016 g10 Code GmbH
#
diff --git a/lang/python/tests/t-wrapper.py b/lang/python/tests/t-wrapper.py
index fab0d811..d260264f 100755
--- a/lang/python/tests/t-wrapper.py
+++ b/lang/python/tests/t-wrapper.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python3
+#!/usr/bin/env python
# Copyright (C) 2016 g10 Code GmbH
#