Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathan Letwory <nathan@letworyinteractive.com>2011-03-04 14:08:22 +0300
committerNathan Letwory <nathan@letworyinteractive.com>2011-03-04 14:08:22 +0300
commit5b6223fdeb413d0c99cfe800e8cef81b44f001d2 (patch)
tree8f051844e6e1e40edab4591cfb286ea536b48ce3 /source/blender/python
parent292f633698c3957e0d8e657aa183ff6b02d069e5 (diff)
Py_hash_t is new typedef in Python 3.2, typedeffing Py_ssize_t. Changing to that to keep "slow adaptors" happy ;)
Diffstat (limited to 'source/blender/python')
-rw-r--r--source/blender/python/intern/bpy_rna.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/intern/bpy_rna.c b/source/blender/python/intern/bpy_rna.c
index 2f7085d9b30..0f452605c28 100644
--- a/source/blender/python/intern/bpy_rna.c
+++ b/source/blender/python/intern/bpy_rna.c
@@ -1033,7 +1033,7 @@ int pyrna_set_to_enum_bitfield(EnumPropertyItem *items, PyObject *value, int *r_
/* set looping */
Py_ssize_t pos = 0;
- Py_hash_t hash = 0;
+ Py_ssize_t hash = 0;
PyObject *key;
*r_value= 0;