Add/fix shebang in python scripts, add execute permission (linux), remove whitespace/tabs at end of line

This commit is contained in:
Chocobo1 2015-07-11 13:51:30 +08:00
parent bbe51268d3
commit a59d1d3240
34 changed files with 207 additions and 182 deletions

2
bindings/python/make_torrent.py Normal file → Executable file
View File

@ -1,4 +1,4 @@
#!/bin/python #!/usr/bin/env python
import sys import sys
import os import os

2
bindings/python/rss_reader.py Normal file → Executable file
View File

@ -1,4 +1,4 @@
#!/usr/bin/python #!/usr/bin/env python
import sys import sys
import libtorrent as lt import libtorrent as lt

2
docs/gen_reference_doc.py Normal file → Executable file
View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
import glob import glob
import os import os
import sys import sys

2
docs/gen_settings_doc.py Normal file → Executable file
View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
f = open('../include/libtorrent/settings_pack.hpp') f = open('../include/libtorrent/settings_pack.hpp')
out = open('settings.rst', 'w+') out = open('settings.rst', 'w+')

2
docs/gen_stats_doc.py Normal file → Executable file
View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
counter_types = {} counter_types = {}
f = open('../include/libtorrent/performance_counters.hpp') f = open('../include/libtorrent/performance_counters.hpp')

2
docs/gen_todo.py Normal file → Executable file
View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
import glob import glob
import os import os

2
examples/run_benchmarks.py Normal file → Executable file
View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
import sys import sys
import os import os
import resource import resource

2
setup.py Normal file → Executable file
View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
import os import os
os.chdir('bindings/python') os.chdir('bindings/python')
execfile('setup.py') execfile('setup.py')

0
test/http.py Normal file → Executable file
View File

2
test/socks.py Normal file → Executable file
View File

@ -1,4 +1,4 @@
#!/usr/bin/python #!/usr/bin/env python
"""Minimal non-feature complete socks proxy""" """Minimal non-feature complete socks proxy"""

2
test/web_server.py Normal file → Executable file
View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
import BaseHTTPServer import BaseHTTPServer
import SimpleHTTPServer import SimpleHTTPServer
import sys import sys

2
tools/clean.py Normal file → Executable file
View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
import os import os
import shutil import shutil
import glob import glob

View File

@ -1,4 +1,4 @@
#! /usr/bin/env python #!/usr/bin/env python
import socket import socket
import sys import sys

0
tools/gprof2dot.py Normal file → Executable file
View File

View File

@ -1,4 +1,4 @@
#! /usr/bin/env python #!/usr/bin/env python
import os, sys, time import os, sys, time
keys = [['upload rate', 'x1y1', 6], ['history entries', 'x1y2', 10], ['queue', 'x1y2', 4]] keys = [['upload rate', 'x1y1', 6], ['history entries', 'x1y2', 10], ['queue', 'x1y2', 4]]

View File

@ -1,4 +1,4 @@
#! /usr/bin/env python #!/usr/bin/env python
# Copyright Arvid Norberg 2008. Use, modification and distribution is # Copyright Arvid Norberg 2008. Use, modification and distribution is
# subject to the Boost Software License, Version 1.0. (See accompanying # subject to the Boost Software License, Version 1.0. (See accompanying
# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) # file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)

View File

@ -1,4 +1,4 @@
#! /usr/bin/env python #!/usr/bin/env python
import sys import sys
import os import os
import time import time

View File

@ -1,4 +1,4 @@
#! /usr/bin/env python #!/usr/bin/env python
import sys import sys
import os import os

2
tools/parse_dht_stats.py Normal file → Executable file
View File

@ -1,4 +1,4 @@
#! /usr/bin/env python #!/usr/bin/env python
import sys import sys
import os import os

View File

@ -1,4 +1,4 @@
#! /usr/bin/env python #!/usr/bin/env python
import os, sys, time import os, sys, time

View File

@ -1,4 +1,4 @@
#! /usr/bin/env python #!/usr/bin/env python
import os, sys, time import os, sys, time

View File

@ -1,4 +1,4 @@
#! /usr/bin/env python #!/usr/bin/env python
# Copyright Arvid Norberg 2008. Use, modification and distribution is # Copyright Arvid Norberg 2008. Use, modification and distribution is
# subject to the Boost Software License, Version 1.0. (See accompanying # subject to the Boost Software License, Version 1.0. (See accompanying
# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) # file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)

1
tools/parse_lookup_log.py Normal file → Executable file
View File

@ -1,3 +1,4 @@
#!/usr/bin/env python
# this is meant to parse the dht_lookups.log generated by parse_dht_log.py # this is meant to parse the dht_lookups.log generated by parse_dht_log.py
import os import os

View File

@ -1,4 +1,4 @@
#! /usr/bin/env python #!/usr/bin/env python
import os, sys, time import os, sys, time
# usage: memory.log memory_index.log # usage: memory.log memory_index.log

1
tools/parse_peer_log.py Normal file → Executable file
View File

@ -1,4 +1,5 @@
#!/usr/bin/env python #!/usr/bin/env python
import glob import glob
import os import os
import sys import sys

2
tools/parse_sample.py Normal file → Executable file
View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
import sys import sys
# to use this script, first run 'sample' to sample your libtorrent based process # to use this script, first run 'sample' to sample your libtorrent based process

View File

@ -1,4 +1,4 @@
#!/bin/python #!/usr/bin/env python
# Copyright (c) 2013, Arvid Norberg # Copyright (c) 2013, Arvid Norberg
# All rights reserved. # All rights reserved.

2
tools/parse_utp_log.py Normal file → Executable file
View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
import os, sys, time import os, sys, time
# usage: parse_log.py log-file [socket-index to focus on] # usage: parse_log.py log-file [socket-index to focus on]

2
tools/run_benchmark.py Normal file → Executable file
View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
import os import os
import time import time
import shutil import shutil

2
tools/run_regression_tests.py Normal file → Executable file
View File

@ -1,4 +1,4 @@
#!/bin/python #!/usr/bin/env python
# Copyright (c) 2013, Arvid Norberg # Copyright (c) 2013, Arvid Norberg
# All rights reserved. # All rights reserved.

View File

@ -1,5 +1,4 @@
#!/usr/bin/env python
#!/bin/python
# Copyright (c) 2013, Arvid Norberg # Copyright (c) 2013, Arvid Norberg
# All rights reserved. # All rights reserved.

3
tools/set_version.py Normal file → Executable file
View File

@ -1,4 +1,5 @@
#! /usr/bin/env python #!/usr/bin/env python
import os import os
import sys import sys
import glob import glob

3
tools/update_copyright.py Normal file → Executable file
View File

@ -1,4 +1,5 @@
#! /usr/bin/env python #!/usr/bin/env python
import os import os
import sys import sys
import glob import glob