Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2009-12-13 17:38:30 +0300
committerCampbell Barton <ideasman42@gmail.com>2009-12-13 17:38:30 +0300
commit7fc4ab2aab403e5db27c7dc7097c8db8afc2cfe8 (patch)
tree5400b0440397ef3011a8af0131815d7e552dc966 /release/scripts/modules/console
parent1add5b58e8e290003a40cf3a123af22703c2fb3b (diff)
add pep8 headers so these scripts spit out errors when running pep8.
made some changes but mostly these scripts will give pep8 warnings.
Diffstat (limited to 'release/scripts/modules/console')
-rw-r--r--release/scripts/modules/console/__init__.py2
-rw-r--r--release/scripts/modules/console/complete_calltip.py2
-rw-r--r--release/scripts/modules/console/complete_import.py2
-rw-r--r--release/scripts/modules/console/complete_namespace.py2
-rw-r--r--release/scripts/modules/console/intellisense.py2
5 files changed, 10 insertions, 0 deletions
diff --git a/release/scripts/modules/console/__init__.py b/release/scripts/modules/console/__init__.py
index eb32d78b1ef..efd2ed85acc 100644
--- a/release/scripts/modules/console/__init__.py
+++ b/release/scripts/modules/console/__init__.py
@@ -13,4 +13,6 @@
# You should have received a copy of the GNU Lesser General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
+# <pep8 compliant>
+
"""Package for console specific modules."""
diff --git a/release/scripts/modules/console/complete_calltip.py b/release/scripts/modules/console/complete_calltip.py
index 486f9469d60..c4687b4f10b 100644
--- a/release/scripts/modules/console/complete_calltip.py
+++ b/release/scripts/modules/console/complete_calltip.py
@@ -13,6 +13,8 @@
# You should have received a copy of the GNU Lesser General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
+# <pep8-80 compliant>
+
import inspect
import re
diff --git a/release/scripts/modules/console/complete_import.py b/release/scripts/modules/console/complete_import.py
index 65a507b349d..875c557f497 100644
--- a/release/scripts/modules/console/complete_import.py
+++ b/release/scripts/modules/console/complete_import.py
@@ -21,6 +21,8 @@
# the file COPYING, distributed as part of this software.
#*****************************************************************************
+# <pep8 compliant>
+
"""Completer for import statements
Original code was from IPython/Extensions/ipy_completers.py. The following
diff --git a/release/scripts/modules/console/complete_namespace.py b/release/scripts/modules/console/complete_namespace.py
index 4aa0de558f2..7a9fd331e49 100644
--- a/release/scripts/modules/console/complete_namespace.py
+++ b/release/scripts/modules/console/complete_namespace.py
@@ -13,6 +13,8 @@
# You should have received a copy of the GNU Lesser General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
+# <pep8-80 compliant>
+
"""Autocomplete with the standard library"""
import re
diff --git a/release/scripts/modules/console/intellisense.py b/release/scripts/modules/console/intellisense.py
index 686b3e7294b..96896d5fd0e 100644
--- a/release/scripts/modules/console/intellisense.py
+++ b/release/scripts/modules/console/intellisense.py
@@ -13,6 +13,8 @@
# You should have received a copy of the GNU Lesser General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
+# <pep8-80 compliant>
+
"""This module provides intellisense features such as:
* autocompletion