Staging
v0.5.1
https://github.com/python/cpython
Revision 81f66f3c650ac84f1eaba6d8dc118e9d96fd8ff2 authored by Benjamin Peterson on 04 October 2008, 21:06:11 UTC, committed by Benjamin Peterson on 04 October 2008, 21:06:11 UTC
........
  r66721 | barry.warsaw | 2008-10-01 22:33:51 -0500 (Wed, 01 Oct 2008) | 1 line

  Bump to 2.7a0
........
  r66722 | martin.v.loewis | 2008-10-02 06:44:17 -0500 (Thu, 02 Oct 2008) | 1 line

  Use CRT 9 policy files.
........
  r66744 | benjamin.peterson | 2008-10-02 14:00:31 -0500 (Thu, 02 Oct 2008) | 1 line

  we're in 2.7 now
........
  r66745 | georg.brandl | 2008-10-02 14:09:47 -0500 (Thu, 02 Oct 2008) | 2 lines

  Forward-port r66736.
........
  r66752 | martin.v.loewis | 2008-10-02 15:04:47 -0500 (Thu, 02 Oct 2008) | 2 lines

  Add UUID for 2.7.
........
  r66756 | benjamin.peterson | 2008-10-02 15:46:58 -0500 (Thu, 02 Oct 2008) | 1 line

  update pydoc topics
........
  r66763 | neal.norwitz | 2008-10-02 23:13:08 -0500 (Thu, 02 Oct 2008) | 1 line

  Update the version to 2.7.  Hopefully this fixes the test_distutils failure
........
  r66764 | martin.v.loewis | 2008-10-03 03:59:41 -0500 (Fri, 03 Oct 2008) | 2 lines

  Bump version to 2.7. Regenerate.
........
  r66765 | martin.v.loewis | 2008-10-03 05:59:55 -0500 (Fri, 03 Oct 2008) | 1 line

  Update version number to 2.7.
........
  r66768 | hirokazu.yamamoto | 2008-10-03 11:07:28 -0500 (Fri, 03 Oct 2008) | 1 line

  Follows to python's version change (VC6)
........
  r66791 | andrew.kuchling | 2008-10-04 11:52:31 -0500 (Sat, 04 Oct 2008) | 1 line

  Add What's New for 2.7
........
  r66792 | benjamin.peterson | 2008-10-04 12:10:14 -0500 (Sat, 04 Oct 2008) | 1 line

  silence Sphinx warning
........
1 parent 4cf8ac4
Raw File
Tip revision: 81f66f3c650ac84f1eaba6d8dc118e9d96fd8ff2 authored by Benjamin Peterson on 04 October 2008, 21:06:11 UTC
Blocked revisions 66721-66722,66744-66745,66752,66756,66763-66765,66768,66791-66792 via svnmerge
Tip revision: 81f66f3
make_versioninfo.c
#include <stdio.h>
#include "patchlevel.h"
/*
 * This program prints out an include file containing fields required to build
 * the version info resource of pythonxx.dll because the resource compiler
 * cannot do the arithmetic.
 */
/*
 * FIELD3 is the third field of the version number.
 * This is what we'd like FIELD3 to be:
 *
 * #define FIELD3 (PY_MICRO_VERSION*1000 + PY_RELEASE_LEVEL*10 + PY_RELEASE_SERIAL)
 *
 * but that neither gives an error nor comes anywhere close to working.
 *
 * For 2.4a0,
 * PY_MICRO_VERSION = 0
 * PY_RELEASE_LEVEL = 'alpha' = 0xa
 * PY_RELEASE_SERIAL = 0
 *
 * gives FIELD3 = 0*1000 + 10*10 + 0 = 100
 */
int main(int argc, char **argv)
{
	printf("/* This file created by make_versioninfo.exe */\n");
	printf("#define FIELD3 %d\n",
		PY_MICRO_VERSION*1000 + PY_RELEASE_LEVEL*10 + PY_RELEASE_SERIAL);
	printf("#define MS_DLL_ID \"%d.%d\"\n",
	       PY_MAJOR_VERSION, PY_MINOR_VERSION);
	printf("#ifndef _DEBUG\n");
	printf("#define PYTHON_DLL_NAME \"python%d%d.dll\"\n",
	       PY_MAJOR_VERSION, PY_MINOR_VERSION);
	printf("#else\n");
	printf("#define PYTHON_DLL_NAME \"python%d%d_d.dll\"\n",
	       PY_MAJOR_VERSION, PY_MINOR_VERSION);
	printf("#endif\n");
	return 0;
}
back to top