]> granicus.if.org Git - python/commitdiff
Patch by Quentin Gallet-Gilles: Renaming leftovers for 2.6.
authorAlexandre Vassalotti <alexandre@peadrop.com>
Fri, 16 May 2008 18:03:52 +0000 (18:03 +0000)
committerAlexandre Vassalotti <alexandre@peadrop.com>
Fri, 16 May 2008 18:03:52 +0000 (18:03 +0000)
This fixes the omissions of configparser, copyreg, queue and
socketserver renaming.

Doc/library/modulefinder.rst
Doc/whatsnew/2.6.rst
Lib/copyreg.py
Lib/pickle.py
Lib/pickletools.py
Lib/test/test___all__.py
Misc/cheatsheet
Objects/typeobject.c

index a086206df72e88d6abec2ad549b95e4fba90e708..402f5db48eec3e76ed30f927a11087fca2d52bad 100644 (file)
@@ -97,7 +97,7 @@ Sample output (may vary depending on the architecture)::
 
     Loaded modules:
     _types:
-    copy_reg:  _inverted_registry,_slotnames,__all__
+    copyreg:  _inverted_registry,_slotnames,__all__
     sre_compile:  isstring,_sre,_optimize_unicode
     _sre:
     sre_constants:  REPEAT_ONE,makedict,AT_END_LINE
index f52dac359d145631410b4e16cd42fe421291fed2..ea2b42b9a3569b81eb5f7c912ecfbbd38d283d07 100644 (file)
@@ -1937,7 +1937,7 @@ details.
   used to hold character data.
   (Contributed by Achim Gaedke; :issue:`1137`.)
 
-* The :mod:`Queue` module now provides queue classes that retrieve entries
+* The :mod:`queue` module now provides queue classes that retrieve entries
   in different orders.  The :class:`PriorityQueue` class stores 
   queued items in a heap and retrieves them in priority order, 
   and :class:`LifoQueue` retrieves the most recently added entries first,
@@ -2041,7 +2041,7 @@ details.
   and connects to it using an optional timeout value, returning 
   the connected socket object.
 
-* The base classes in the :mod:`SocketServer` module now support
+* The base classes in the :mod:`socketserver` module now support
   calling a :meth:`handle_timeout` method after a span of inactivity 
   specified by the server's :attr:`timeout` attribute.  (Contributed 
   by Michael Pomraning.)  The :meth:`serve_forever` method 
index db1715092c5dcd0eb1e1a22c0957ee04851b6076..bf8827e3c093c7d63ec7d9b3cfc677094f291dbb 100644 (file)
@@ -13,7 +13,7 @@ dispatch_table = {}
 
 def pickle(ob_type, pickle_function, constructor_ob=None):
     if type(ob_type) is _ClassType:
-        raise TypeError("copy_reg is not intended for use with classes")
+        raise TypeError("copyreg is not intended for use with classes")
 
     if not hasattr(pickle_function, '__call__'):
         raise TypeError("reduction functions must be callable")
index 1e91eef28bc7987ba4b67a561df7960e327da6f2..ddb2c81490c18b7103286416a4fa879052db1b91 100644 (file)
@@ -1,7 +1,7 @@
 """Create portable serialized representations of Python objects.
 
 See module cPickle for a (much) faster implementation.
-See module copy_reg for a mechanism for registering custom picklers.
+See module copyreg for a mechanism for registering custom picklers.
 See module pickletools source for extensive comments.
 
 Classes:
index ae02a36103ac0f06253c00ba7463d148c71d276d..623dd16bf4cf75eac3269e7e3eaa538b07ee6610 100644 (file)
@@ -136,7 +136,7 @@ this and there isn't a use case that warrants the expense of such an
 analysis.
 
 To this end, all tests for __safe_for_unpickling__ or for
-copy_reg.safe_constructors are removed from the unpickling code.
+copyreg.safe_constructors are removed from the unpickling code.
 References to these variables in the descriptions below are to be seen
 as describing unpickling in Python 2.2 and before.
 """
@@ -1525,7 +1525,7 @@ opcodes = [
       BUILD opcode to apply  __setstate__ to that argument.
 
       If type(callable) is not ClassType, REDUCE complains unless the
-      callable has been registered with the copy_reg module's
+      callable has been registered with the copyreg module's
       safe_constructors dict, or the callable has a magic
       '__safe_for_unpickling__' attribute with a true value.  I'm not sure
       why it does this, but I've sure seen this complaint often enough when
index eaa9c25049ca25cbb19e79ae5d1ade2c522ded3a..3b6d966f0b47d7098d3b62720768787cf504d3ca 100644 (file)
@@ -40,7 +40,7 @@ class AllTest(unittest.TestCase):
         self.check_all("configparser")
         self.check_all("Cookie")
         self.check_all("MimeWriter")
-        self.check_all("Queue")
+        self.check_all("queue")
         self.check_all("SimpleHTTPServer")
         self.check_all("socketserver")
         self.check_all("StringIO")
index 61217c4f4431fe6327f557ee125d30ea94ff0090..1ce19964c76375b3fe75e95354a11311f37da4f0 100644 (file)
@@ -1862,9 +1862,9 @@ codecs           Lookup existing Unicode encodings and register new ones.
 colorsys         Conversion functions between RGB and other color systems.
 commands         Tools for executing UNIX commands .
 compileall       Force "compilation" of all .py files in a directory.
-ConfigParser     Configuration file parser (much like windows .ini files)
+configparser     Configuration file parser (much like windows .ini files)
 copy             Generic shallow and deep copying operations.
-copy_reg         Helper to provide extensibility for pickle/cPickle.
+copyreg          Helper to provide extensibility for pickle/cPickle.
 csv              Read and write files with comma separated values.
 dbhash           (g)dbm-compatible interface to bsdhash.hashopen.
 dircache         Sorted list of files in a dir, using a cache.
@@ -1952,7 +1952,7 @@ pty              Pseudo terminal utilities.
 pyexpat          Interface to the Expay XML parser.
 py_compile       Routine to "compile" a .py file to a .pyc file.
 pyclbr           Parse a Python file and retrieve classes and methods.
-Queue            A multi-producer, multi-consumer queue.
+queue            A multi-producer, multi-consumer queue.
 quopri           Conversions to/from quoted-printable transport encoding.
 rand             Don't use unless you want compatibility with C's rand().
 random           Random variable generators
index 4dfd39e9fab99755ef37c489128cf916b81ea712..113829109ce253163dc9136a1084e7e7cb3fd68e 100644 (file)
@@ -3108,7 +3108,7 @@ slotnames(PyObject *cls)
            !PyList_Check(slotnames))
        {
                PyErr_SetString(PyExc_TypeError,
-                       "copy_reg._slotnames didn't return a list or None");
+                       "copyreg._slotnames didn't return a list or None");
                Py_DECREF(slotnames);
                slotnames = NULL;
        }