[Python-checkins] r83725 - in python/branches/release27-maint: Lib/test/test_rlcompleter.py Lib/test/test_sundry.py Misc/ACKS Misc/NEWS

antoine.pitrou python-checkins at python.org
Wed Aug 4 17:54:33 CEST 2010


Author: antoine.pitrou
Date: Wed Aug  4 17:54:33 2010
New Revision: 83725

Log:
Merged revisions 83719 via svnmerge from 
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r83719 | antoine.pitrou | 2010-08-04 17:43:16 +0200 (mer., 04 août 2010) | 4 lines
  
  Issue #9496: Provide a test suite for the rlcompleter module.  Patch by
  Michele Orrù.
........


Added:
   python/branches/release27-maint/Lib/test/test_rlcompleter.py
      - copied, changed from r83719, /python/branches/py3k/Lib/test/test_rlcompleter.py
Modified:
   python/branches/release27-maint/   (props changed)
   python/branches/release27-maint/Lib/test/test_sundry.py
   python/branches/release27-maint/Misc/ACKS
   python/branches/release27-maint/Misc/NEWS

Copied: python/branches/release27-maint/Lib/test/test_rlcompleter.py (from r83719, /python/branches/py3k/Lib/test/test_rlcompleter.py)
==============================================================================
--- /python/branches/py3k/Lib/test/test_rlcompleter.py	(original)
+++ python/branches/release27-maint/Lib/test/test_rlcompleter.py	Wed Aug  4 17:54:33 2010
@@ -1,9 +1,9 @@
-from test import support
+from test import test_support as support
 import unittest
-import builtins
+import __builtin__ as builtins
 import rlcompleter
 
-class CompleteMe:
+class CompleteMe(object):
     """ Trivial class used in testing rlcompleter.Completer. """
     spam = 1
 

Modified: python/branches/release27-maint/Lib/test/test_sundry.py
==============================================================================
--- python/branches/release27-maint/Lib/test/test_sundry.py	(original)
+++ python/branches/release27-maint/Lib/test/test_sundry.py	Wed Aug  4 17:54:33 2010
@@ -65,7 +65,6 @@
             import pstats
             import py_compile
             import rexec
-            import rlcompleter
             import sched
             import sndhdr
             import statvfs

Modified: python/branches/release27-maint/Misc/ACKS
==============================================================================
--- python/branches/release27-maint/Misc/ACKS	(original)
+++ python/branches/release27-maint/Misc/ACKS	Wed Aug  4 17:54:33 2010
@@ -575,6 +575,7 @@
 Piet van Oostrum
 Jason Orendorff
 Douglas Orr
+Michele Orrù
 Denis S. Otkidach
 Michael Otteneder
 R. M. Oudkerk

Modified: python/branches/release27-maint/Misc/NEWS
==============================================================================
--- python/branches/release27-maint/Misc/NEWS	(original)
+++ python/branches/release27-maint/Misc/NEWS	Wed Aug  4 17:54:33 2010
@@ -185,6 +185,9 @@
 Tests
 -----
 
+- Issue #9496: Provide a test suite for the rlcompleter module.  Patch by
+  Michele Orrù.
+
 - Issue #8605: Skip test_gdb if Python is compiled with optimizations.
 
 Documentation


More information about the Python-checkins mailing list