summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Prince <tom.prince@ualberta.net>2015-01-08 10:52:34 -0700
committerTom Prince <tom.prince@ualberta.net>2015-01-08 10:52:34 -0700
commit7e82dd32c9df5be2e72993209d031babd48219c9 (patch)
treeab97e67f0e96cf4451e7f93eadfe599b8520675f
parent2bc8555f0428af81c2d067aa76168ed7bc5e0179 (diff)
downloadpsutil-7e82dd32c9df5be2e72993209d031babd48219c9.tar.gz
Modules aren't scripts.
They shouldn't have shebang lines.
-rw-r--r--psutil/__init__.py1
-rw-r--r--psutil/_compat.py2
-rw-r--r--psutil/_psbsd.py2
-rw-r--r--psutil/_pslinux.py2
-rw-r--r--psutil/_psosx.py2
-rw-r--r--psutil/_psposix.py2
-rw-r--r--psutil/_pssunos.py2
-rw-r--r--psutil/_pswindows.py2
8 files changed, 0 insertions, 15 deletions
diff --git a/psutil/__init__.py b/psutil/__init__.py
index ecc936d4..8d5ba5d6 100644
--- a/psutil/__init__.py
+++ b/psutil/__init__.py
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright (c) 2009, Giampaolo Rodola'. All rights reserved.
diff --git a/psutil/_compat.py b/psutil/_compat.py
index 84fd9ca8..203408b8 100644
--- a/psutil/_compat.py
+++ b/psutil/_compat.py
@@ -1,5 +1,3 @@
-#!/usr/bin/env python
-
# Copyright (c) 2009, Giampaolo Rodola'. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
diff --git a/psutil/_psbsd.py b/psutil/_psbsd.py
index 87ae2119..39dfea36 100644
--- a/psutil/_psbsd.py
+++ b/psutil/_psbsd.py
@@ -1,5 +1,3 @@
-#!/usr/bin/env python
-
# Copyright (c) 2009, Giampaolo Rodola'. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
diff --git a/psutil/_pslinux.py b/psutil/_pslinux.py
index 3bf062b1..71ab8824 100644
--- a/psutil/_pslinux.py
+++ b/psutil/_pslinux.py
@@ -1,5 +1,3 @@
-#!/usr/bin/env python
-
# Copyright (c) 2009, Giampaolo Rodola'. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
diff --git a/psutil/_psosx.py b/psutil/_psosx.py
index c40ef1d7..733a1854 100644
--- a/psutil/_psosx.py
+++ b/psutil/_psosx.py
@@ -1,5 +1,3 @@
-#!/usr/bin/env python
-
# Copyright (c) 2009, Giampaolo Rodola'. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
diff --git a/psutil/_psposix.py b/psutil/_psposix.py
index 94db351e..0da6a8ce 100644
--- a/psutil/_psposix.py
+++ b/psutil/_psposix.py
@@ -1,5 +1,3 @@
-#!/usr/bin/env python
-
# Copyright (c) 2009, Giampaolo Rodola'. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
diff --git a/psutil/_pssunos.py b/psutil/_pssunos.py
index 7b5385ef..1ee249e5 100644
--- a/psutil/_pssunos.py
+++ b/psutil/_pssunos.py
@@ -1,5 +1,3 @@
-#!/usr/bin/env python
-
# Copyright (c) 2009, Giampaolo Rodola'. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
diff --git a/psutil/_pswindows.py b/psutil/_pswindows.py
index 6068446b..47c049c1 100644
--- a/psutil/_pswindows.py
+++ b/psutil/_pswindows.py
@@ -1,5 +1,3 @@
-#!/usr/bin/env python
-
# Copyright (c) 2009, Giampaolo Rodola'. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.