]> granicus.if.org Git - python/commitdiff
Merged revisions 82872,82874 via svnmerge from
authorGeorg Brandl <georg@python.org>
Wed, 14 Jul 2010 08:55:55 +0000 (08:55 +0000)
committerGeorg Brandl <georg@python.org>
Wed, 14 Jul 2010 08:55:55 +0000 (08:55 +0000)
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r82872 | georg.brandl | 2010-07-14 10:53:18 +0200 (Mi, 14 Jul 2010) | 1 line

  Remove XXX from text.
........
  r82874 | georg.brandl | 2010-07-14 10:54:40 +0200 (Mi, 14 Jul 2010) | 1 line

  #9235: fix missing import of sys.
........

Doc/distutils/apiref.rst
Tools/gdb/libpython.py

index bce22bf1bd6abbbf897ab030ba4f7b9178400ccc..ae34565b8b06ec81c02a1f259704eb1526ab46dc 100644 (file)
@@ -21,7 +21,7 @@ setup script). Indirectly provides the  :class:`distutils.dist.Distribution` and
 .. function:: setup(arguments)
 
    The basic do-everything function that does most everything you could ever ask
-   for from a Distutils method. See XXXXX
+   for from a Distutils method.
 
    The setup function takes a large number of arguments. These are laid out in the
    following table.
index 3481f71c15556eab09249478663e7ca9909fe625..22c0066120841b856fc21a566397ea40bf093ca5 100644 (file)
@@ -41,6 +41,7 @@ The module also extends gdb with some python-specific commands.
 '''
 from __future__ import with_statement
 import gdb
+import sys
 
 # Look up the gdb.Type for some standard types:
 _type_char_ptr = gdb.lookup_type('char').pointer() # char*