diff options
author | Georg Brandl <georg@python.org> | 2010-07-07 19:04:36 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-07-07 19:04:36 (GMT) |
commit | b9137848ae12801e3454228bbf6c8f357986ecbd (patch) | |
tree | 84993f5c5535086e5a674bf3f7902e81bc245b3c /Doc | |
parent | de73c4587f665bdbf748715461691e9584f30c0f (diff) | |
download | cpython-b9137848ae12801e3454228bbf6c8f357986ecbd.zip cpython-b9137848ae12801e3454228bbf6c8f357986ecbd.tar.gz cpython-b9137848ae12801e3454228bbf6c8f357986ecbd.tar.bz2 |
Turn more notes into comments.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/distutils/apiref.rst | 5 | ||||
-rw-r--r-- | Doc/distutils/builtdist.rst | 4 | ||||
-rw-r--r-- | Doc/distutils/setupscript.rst | 4 |
3 files changed, 6 insertions, 7 deletions
diff --git a/Doc/distutils/apiref.rst b/Doc/distutils/apiref.rst index 6bcf3a7..9f95740 100644 --- a/Doc/distutils/apiref.rst +++ b/Doc/distutils/apiref.rst @@ -995,7 +995,7 @@ directories. errors are ignored (apart from being reported to ``sys.stdout`` if *verbose* is true). -**\*\*** Some of this could be replaced with the shutil module? **\*\*** +.. XXX Some of this could be replaced with the shutil module? :mod:`distutils.file_util` --- Single file operations @@ -1311,8 +1311,7 @@ provides the following additional features: the "negative alias" of :option:`--verbose`, then :option:`--quiet` on the command line sets *verbose* to false. -**\*\*** Should be replaced with :mod:`optik` (which is also now known as -:mod:`optparse` in Python 2.3 and later). **\*\*** +.. XXX Should be replaced with :mod:`optparse`. .. function:: fancy_getopt(options, negative_opt, object, args) diff --git a/Doc/distutils/builtdist.rst b/Doc/distutils/builtdist.rst index 5832552..8ce94d3 100644 --- a/Doc/distutils/builtdist.rst +++ b/Doc/distutils/builtdist.rst @@ -146,8 +146,8 @@ commands. Creating dumb built distributions ================================= -**\*\*** Need to document absolute vs. prefix-relative packages here, but first -I have to implement it! **\*\*** +.. XXX Need to document absolute vs. prefix-relative packages here, but first + I have to implement it! .. _creating-rpms: diff --git a/Doc/distutils/setupscript.rst b/Doc/distutils/setupscript.rst index 5ec94c7..9208e36 100644 --- a/Doc/distutils/setupscript.rst +++ b/Doc/distutils/setupscript.rst @@ -207,7 +207,7 @@ However, you can also include SWIG interface (:file:`.i`) files in the list; the SWIG on the interface file and compile the resulting C/C++ file into your extension. -**\*\*** SWIG support is rough around the edges and largely untested! **\*\*** +.. XXX SWIG support is rough around the edges and largely untested! This warning notwithstanding, options to SWIG can be currently passed like this:: @@ -326,7 +326,7 @@ include the location in ``library_dirs``:: (Again, this sort of non-portable construct should be avoided if you intend to distribute your code.) -**\*\*** Should mention clib libraries here or somewhere else! **\*\*** +.. XXX Should mention clib libraries here or somewhere else! Other options |