We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 944a801 commit bba09a3Copy full SHA for bba09a3
CHANGELOG.rst
@@ -1,6 +1,10 @@
1
===========
2
Changelog
3
4
+1.3.0
5
+ * Updated backend to use python-cffi instead of ctypes. This gives decent
6
+ boost to speed in CPython and a drastic to boost in speed in PyPy.
7
+
8
1.2.0
9
* The set_colors method now changes the default colors used by the draw_*
10
methods. You can use Python's Ellipsis to explicitly select default colors
build_libtcod.py
@@ -1,9 +1,12 @@
#!/usr/bin/env python3
-from cffi import FFI
+import sys
import platform
+from cffi import FFI
def _get_library_crossplatform():
11
bits, linkage = platform.architecture()
12
if 'win32' in sys.platform:
tdl/version.txt
@@ -1 +1 @@
-1.2.0
0 commit comments