• 源码 版本


    Python-3.8.0Includepatchlevel.h

    版本

    /* Values for PY_RELEASE_LEVEL */
    #define PY_RELEASE_LEVEL_ALPHA  0xA
    #define PY_RELEASE_LEVEL_BETA   0xB
    #define PY_RELEASE_LEVEL_GAMMA  0xC     /* For release candidates */
    #define PY_RELEASE_LEVEL_FINAL  0xF     /* Serial should be 0 here */
                                            /* Higher for patch releases */

    /* Version parsed out into numeric values */
    /*--start constants--*/
    #define PY_MAJOR_VERSION        3
    #define PY_MINOR_VERSION        8
    #define PY_MICRO_VERSION        0
    #define PY_RELEASE_LEVEL        PY_RELEASE_LEVEL_FINAL
    #define PY_RELEASE_SERIAL       0
     
      用16进制比较版本  游戏buff
     
    /* 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) | 
                            (PY_MINOR_VERSION << 16) | 
                            (PY_MICRO_VERSION <<  8) | 
                            (PY_RELEASE_LEVEL <<  4) | 
                            (PY_RELEASE_SERIAL << 0))
     
     
     
     
     
     
     
     
     
  • 相关阅读:
    C#操作Redis Set 无序集合
    C#操作Redis Hash数据表
    C#操作Redis List 列表
    C#操作Redis String字符串
    Redis 小结
    建造者模式
    外观模式
    模板方法模式
    原型模式
    select ie6 的bug 层级
  • 原文地址:https://www.cnblogs.com/rsapaper/p/11780057.html
Copyright © 2020-2023  润新知