[pypy-commit] pypy default: Make this variable #defined to "", like CPython did when
arigo
noreply at buildbot.pypy.org
Wed Aug 3 08:01:59 CEST 2011
Author: Armin Rigo <arigo at tunes.org>
Branch:
Changeset: r46228:13db7e546d76
Date: 2011-08-03 08:02 +0200
http://bitbucket.org/pypy/pypy/changeset/13db7e546d76/
Log: Make this variable #defined to "", like CPython did when migrating
to Mercurial.
diff --git a/pypy/module/cpyext/include/patchlevel.h b/pypy/module/cpyext/include/patchlevel.h
--- a/pypy/module/cpyext/include/patchlevel.h
+++ b/pypy/module/cpyext/include/patchlevel.h
@@ -31,8 +31,9 @@
/* PyPy version as a string */
#define PYPY_VERSION "1.6.0"
-/* Subversion Revision number of this file (not of the repository) */
-#define PY_PATCHLEVEL_REVISION "$Revision: 77872 $"
+/* 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 >= ... */
More information about the pypy-commit
mailing list