OLD | NEW |
1 /** | 1 /** |
2 * markupsafe._speedups | 2 * markupsafe._speedups |
3 * ~~~~~~~~~~~~~~~~~~~~ | 3 * ~~~~~~~~~~~~~~~~~~~~ |
4 * | 4 * |
5 * This module implements functions for automatic escaping in C for better | 5 * This module implements functions for automatic escaping in C for better |
6 * performance. | 6 * performance. |
7 * | 7 * |
8 * :copyright: (c) 2010 by Armin Ronacher. | 8 * :copyright: (c) 2010 by Armin Ronacher. |
9 * :license: BSD. | 9 * :license: BSD. |
10 */ | 10 */ |
(...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
230 PyMODINIT_FUNC | 230 PyMODINIT_FUNC |
231 PyInit__speedups(void) | 231 PyInit__speedups(void) |
232 { | 232 { |
233 if (!init_constants()) | 233 if (!init_constants()) |
234 return NULL; | 234 return NULL; |
235 | 235 |
236 return PyModule_Create(&module_definition); | 236 return PyModule_Create(&module_definition); |
237 } | 237 } |
238 | 238 |
239 #endif | 239 #endif |
OLD | NEW |