]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
kill PY_PATCHLEVEL_REVISION
authorBenjamin Peterson <benjamin@python.org>
Tue, 15 Mar 2011 20:07:20 +0000 (15:07 -0500)
committerBenjamin Peterson <benjamin@python.org>
Tue, 15 Mar 2011 20:07:20 +0000 (15:07 -0500)
Include/patchlevel.h
Misc/NEWS

index 116be891d867ee8bfd79488c44652cafc1201d68..d68443e0a8ab46aecb5c8ea2433b632ad5b99480 100644 (file)
 #define PY_VERSION             "3.3a0"
 /*--end constants--*/
 
-/* Subversion Revision number of this file (not of the repository). Empty
-   since Mercurial migration. */
-#define PY_PATCHLEVEL_REVISION  ""
-
 /* Version as a single 4-byte hex number, e.g. 0x010502B2 == 1.5.2b2.
    Use this for numeric comparisons, e.g. #if PY_VERSION_HEX >= ... */
 #define PY_VERSION_HEX ((PY_MAJOR_VERSION << 24) | \
index 018c62d8c8b2b5b539ef7f684d070b428dbcf981..168aed8635a345b7497ad1d04f3d3793dade6223 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -237,6 +237,11 @@ Tests
 
 - Issue #10990: Prevent tests from clobbering a set trace function.
 
+C-API
+-----
+
+- PY_PATCHLEVEL_REVISION has been removed, since it's meaningless with Mercurial.
+
 
 What's New in Python 3.2?
 =========================