summaryrefslogtreecommitdiff
path: root/doc/source
diff options
context:
space:
mode:
authorJulian Andres Klode <jak@debian.org>2009-01-12 17:01:34 +0100
committerJulian Andres Klode <jak@debian.org>2009-01-12 17:01:34 +0100
commit2e4443bbd9872f5599c9a8eb93a65d6c34c83ca2 (patch)
tree86e6f869f2f0e59f99df0f49f679dcd7eeba5255 /doc/source
parenteb32fb89da3e3e1ff4a9668aaed6d533f04e9ee7 (diff)
downloadpython-apt-2e4443bbd9872f5599c9a8eb93a65d6c34c83ca2.tar.gz
Cleanup: Comparisons to True/False, ==/!= None, deprecated modules
Diffstat (limited to 'doc/source')
-rw-r--r--doc/source/conf.py18
-rw-r--r--doc/source/examples/missing-deps.py1
2 files changed, 11 insertions, 8 deletions
diff --git a/doc/source/conf.py b/doc/source/conf.py
index bb8056ad..8f71e3e3 100644
--- a/doc/source/conf.py
+++ b/doc/source/conf.py
@@ -3,18 +3,20 @@
# python-apt documentation build configuration file, created by
# sphinx-quickstart on Wed Jan 7 17:04:36 2009.
#
-# This file is execfile()d with the current directory set to its containing dir.
+# This file is execfile()d with the current directory set to its containing
+# dir.
#
# The contents of this file are pickled, so don't put values in the namespace
-# that aren't pickleable (module imports are okay, they're removed automatically).
+# that aren't pickleable (module imports are okay, they're removed
+# automatically).
#
# Note that not all possible configuration values are present in this
# autogenerated file.
#
# All configuration values have a default; values that are commented out
# serve to show the default.
-
-import sys, os
+import os
+import sys
# If your extensions are in another directory, add it here. If the directory
# is relative to the documentation root, use os.path.abspath to make it
@@ -28,8 +30,8 @@ if os.path.exists("../../build"):
# General configuration
# ---------------------
-# Add any Sphinx extension module names here, as strings. They can be extensions
-# coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
+# Add any Sphinx extension module names here, as strings. They can be
+# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
extensions = ['sphinx.ext.autodoc', 'sphinx.ext.doctest',
'sphinx.ext.intersphinx', 'sphinx.ext.todo']
intersphinx_mapping = {'http://docs.python.org/': None}
@@ -76,7 +78,7 @@ release = '0.7.9~exp2'
# for source files.
exclude_trees = []
-# The reST default role (used for this markup: `text`) to use for all documents.
+# The reST default role (used for this markup: `text`) for all documents.
#default_role = None
# If true, '()' will be appended to :func: etc. cross-reference text.
@@ -172,7 +174,7 @@ htmlhelp_basename = 'python-aptdoc'
#latex_font_size = '10pt'
# Grouping the document tree into LaTeX files. List of tuples
-# (source start file, target name, title, author, document class [howto/manual]).
+# (source index, target name, title, author, document class [howto/manual]).
latex_documents = [
('index', 'python-apt.tex', ur'python-apt Documentation',
ur'Julian Andres Klode <jak@debian.org>', 'manual'),
diff --git a/doc/source/examples/missing-deps.py b/doc/source/examples/missing-deps.py
index 0870eb98..3ca16e45 100644
--- a/doc/source/examples/missing-deps.py
+++ b/doc/source/examples/missing-deps.py
@@ -10,6 +10,7 @@ def fmt_dep(dep):
ret += " (%s %s)" % (dep.CompType, dep.TargetVer)
return ret
+
def check_version(pkgver):
"""Check the version of the package"""
missing = []