python3.<x> 和 python3.<x>m 有什么区别
What's the difference between python3.<x> and python3.<x>m
m
在python3.6m
中代表什么?
- 它与非
m
版本有何不同?
- 在哪种情况下我更愿意使用
python3.6m
而不是 python3.6
?
What does the m
stand for in python3.6m
?
它表示 Python 已配置 --with-pymalloc
,它启用了比系统更快的内存分配专用实现 malloc
。
How does it differ to non m
version?
非 m
版本显然没有配置它。
In which case would I prefer to use python3.6m
rather than python3.6
?
在编写 C
扩展时可能最有用,一般来说它不应该是您应该担心的事情。
m
在python3.6m
中代表什么?- 它与非
m
版本有何不同? - 在哪种情况下我更愿意使用
python3.6m
而不是python3.6
?
What does the
m
stand for inpython3.6m
?
它表示 Python 已配置 --with-pymalloc
,它启用了比系统更快的内存分配专用实现 malloc
。
How does it differ to non
m
version?
非 m
版本显然没有配置它。
In which case would I prefer to use
python3.6m
rather thanpython3.6
?
在编写 C
扩展时可能最有用,一般来说它不应该是您应该担心的事情。