Version 1.3.3
Jonas Haag
7 years ago
106 | 106 |
assert(StartResponse_Type.tp_flags & Py_TPFLAGS_READY);
|
107 | 107 |
|
108 | 108 |
PyObject* bjoern_module = Py_InitModule("bjoern", Bjoern_FunctionTable);
|
109 | |
PyModule_AddObject(bjoern_module, "version", Py_BuildValue("(iii)", 1, 3, 2));
|
|
109 |
PyModule_AddObject(bjoern_module, "version", Py_BuildValue("(iii)", 1, 3, 3));
|
110 | 110 |
}
|
111 | 111 |
|
112 | 112 |
/* (1) Don't use bool here because we use the "i" type specifier in the call to
|
23 | 23 |
license = '2-clause BSD',
|
24 | 24 |
url = 'https://github.com/jonashaag/bjoern',
|
25 | 25 |
description = 'A screamingly fast Python WSGI server written in C.',
|
26 | |
version = '1.3.2',
|
|
26 |
version = '1.3.3',
|
27 | 27 |
classifiers = ['Development Status :: 4 - Beta',
|
28 | 28 |
'License :: OSI Approved :: BSD License',
|
29 | 29 |
'Programming Language :: C',
|