Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit bd341fa

Browse files
committed
Add the possibility of a gamma release (release candidate).
Add '+' to string version number to indicate we're beyond b2 now.
1 parent 7969f31 commit bd341fa

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

Include/patchlevel.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ PERFORMANCE OF THIS SOFTWARE.
4444
/* Values for PY_RELEASE_LEVEL */
4545
#define PY_RELEASE_LEVEL_ALPHA 0xA
4646
#define PY_RELEASE_LEVEL_BETA 0xB
47+
#define PY_RELEASE_LEVEL_GAMMA 0xC
4748
#define PY_RELEASE_LEVEL_FINAL 0xF /* Serial should be 0 here */
4849

4950
/* Version parsed out into numeric values */
@@ -54,10 +55,10 @@ PERFORMANCE OF THIS SOFTWARE.
5455
#define PY_RELEASE_SERIAL 2
5556

5657
/* Version as a string */
57-
#define PY_VERSION "1.5.2b2"
58+
#define PY_VERSION "1.5.2b2+"
5859

5960
/* Historic */
60-
#define PATCHLEVEL "1.5.2b2"
61+
#define PATCHLEVEL "1.5.2b2+"
6162

6263
/* Version as a single 4-byte hex number, e.g. 0x010502B2 == 1.5.2b2.
6364
Use this for numeric comparisons, e.g. #if PY_VERSION_HEX >= ... */

0 commit comments

Comments
 (0)