Commit 88bf0055 authored by Stefan Behnel's avatar Stefan Behnel

Split known types into separate lines to let them have their own VCS history.

parent e651bec3
...@@ -407,10 +407,34 @@ py_complex = typedef(complex, "double complex") ...@@ -407,10 +407,34 @@ py_complex = typedef(complex, "double complex")
# Predefined types # Predefined types
int_types = ['char', 'short', 'Py_UNICODE', 'int', 'Py_UCS4', 'long', 'longlong', 'Py_hash_t', 'Py_ssize_t', 'size_t'] int_types = [
float_types = ['longdouble', 'double', 'float'] 'char',
complex_types = ['longdoublecomplex', 'doublecomplex', 'floatcomplex', 'complex'] 'short',
other_types = ['bint', 'void', 'Py_tss_t'] 'Py_UNICODE',
'int',
'Py_UCS4',
'long',
'longlong',
'Py_hash_t',
'Py_ssize_t',
'size_t',
]
float_types = [
'longdouble',
'double',
'float',
]
complex_types = [
'longdoublecomplex',
'doublecomplex',
'floatcomplex',
'complex',
]
other_types = [
'bint',
'void',
'Py_tss_t',
]
to_repr = { to_repr = {
'longlong': 'long long', 'longlong': 'long long',
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment