diff options
| author | Bob Halley <halley@dnspython.org> | 2020-05-01 13:02:48 -0700 |
|---|---|---|
| committer | Bob Halley <halley@dnspython.org> | 2020-05-01 13:02:48 -0700 |
| commit | 84b83f9f2c08ad66597420753dc9671d21d6a37c (patch) | |
| tree | 7a89317fe7052e5b9e6c23a94af8dc0cc5310534 /examples | |
| parent | 66a25809f5c10b4d737d85245c762718447e3c87 (diff) | |
| download | dnspython-84b83f9f2c08ad66597420753dc9671d21d6a37c.tar.gz | |
make all shebangs python3
Diffstat (limited to 'examples')
| -rwxr-xr-x | examples/ddns.py | 2 | ||||
| -rwxr-xr-x | examples/e164.py | 2 | ||||
| -rwxr-xr-x | examples/mx.py | 2 | ||||
| -rwxr-xr-x | examples/name.py | 2 | ||||
| -rw-r--r-- | examples/query_specific.py | 2 | ||||
| -rwxr-xr-x | examples/reverse.py | 2 | ||||
| -rwxr-xr-x | examples/reverse_name.py | 2 | ||||
| -rwxr-xr-x | examples/xfr.py | 2 | ||||
| -rwxr-xr-x | examples/zonediff.py | 2 |
9 files changed, 9 insertions, 9 deletions
diff --git a/examples/ddns.py b/examples/ddns.py index f351524..c584f42 100755 --- a/examples/ddns.py +++ b/examples/ddns.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # # Use a TSIG-signed DDNS update to update our hostname-to-address diff --git a/examples/e164.py b/examples/e164.py index 497fd68..6d9e872 100755 --- a/examples/e164.py +++ b/examples/e164.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 import dns.e164 n = dns.e164.from_e164("+1 555 1212") diff --git a/examples/mx.py b/examples/mx.py index a4bad70..c8eaa10 100755 --- a/examples/mx.py +++ b/examples/mx.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 import dns.resolver diff --git a/examples/name.py b/examples/name.py index 40d0c56..614fdbc 100755 --- a/examples/name.py +++ b/examples/name.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 import dns.name diff --git a/examples/query_specific.py b/examples/query_specific.py index 23eff30..5d8aeb9 100644 --- a/examples/query_specific.py +++ b/examples/query_specific.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Two ways of querying a specific nameserver. diff --git a/examples/reverse.py b/examples/reverse.py index a0293ee..83b99b7 100755 --- a/examples/reverse.py +++ b/examples/reverse.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Usage: reverse.py <zone_filename>... # diff --git a/examples/reverse_name.py b/examples/reverse_name.py index a87fe34..02b2e51 100755 --- a/examples/reverse_name.py +++ b/examples/reverse_name.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 import dns.reversename n = dns.reversename.from_address("127.0.0.1") diff --git a/examples/xfr.py b/examples/xfr.py index c09aa35..41731e3 100755 --- a/examples/xfr.py +++ b/examples/xfr.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 import dns.query import dns.resolver diff --git a/examples/zonediff.py b/examples/zonediff.py index 112df40..164bf2b 100755 --- a/examples/zonediff.py +++ b/examples/zonediff.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # # Small library and commandline tool to do logical diffs of zonefiles # ./zonediff -h gives you help output |
