[Python-checkins] r72601 - in python/trunk: Misc/NEWS Python/marshal.c

r.david.murray python-checkins at python.org
Wed May 13 15:07:15 CEST 2009


Author: r.david.murray
Date: Wed May 13 15:07:14 2009
New Revision: 72601

Log:
Move news item to correct section, remove spurious 'see below'
from docstring.


Modified:
   python/trunk/Misc/NEWS
   python/trunk/Python/marshal.c

Modified: python/trunk/Misc/NEWS
==============================================================================
--- python/trunk/Misc/NEWS	(original)
+++ python/trunk/Misc/NEWS	Wed May 13 15:07:14 2009
@@ -12,6 +12,8 @@
 Core and Builtins
 -----------------
 
+- Issue #5994: the marshal module now has docstrings.
+
 - Issue #5981: Fix three minor inf/nan issues in float.fromhex:
   (1) inf and nan strings with trailing whitespace were incorrectly
   rejected;  (2) parsing of strings representing infinities and nans
@@ -291,8 +293,6 @@
 Library
 -------
 
-- Issue #5994: the marshal module now has docstrings.
-
 - Issue #5977: distutils build_ext.get_outputs was not taking into account the
   inplace option. Initial patch by kxroberto.
 

Modified: python/trunk/Python/marshal.c
==============================================================================
--- python/trunk/Python/marshal.c	(original)
+++ python/trunk/Python/marshal.c	Wed May 13 15:07:14 2009
@@ -1308,7 +1308,7 @@
 value has (or contains an object that has) an unsupported type.\n\
 \n\
 New in version 2.4: The version argument indicates the data format that\n\
-dumps should use (see below).");
+dumps should use.");
 
 
 static PyObject *


More information about the Python-checkins mailing list