LEFT | RIGHT |
1 /* | 1 /* |
2 | 2 |
3 Unicode implementation based on original code by Fredrik Lundh, | 3 Unicode implementation based on original code by Fredrik Lundh, |
4 modified by Marc-Andre Lemburg <mal@lemburg.com>. | 4 modified by Marc-Andre Lemburg <mal@lemburg.com>. |
5 | 5 |
6 Major speed upgrades to the method implementations at the Reykjavik | 6 Major speed upgrades to the method implementations at the Reykjavik |
7 NeedForSpeed sprint, by Fredrik Lundh and Andrew Dalke. | 7 NeedForSpeed sprint, by Fredrik Lundh and Andrew Dalke. |
8 | 8 |
9 Copyright (c) Corporation for National Research Initiatives. | 9 Copyright (c) Corporation for National Research Initiatives. |
10 | 10 |
(...skipping 15511 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
15522 PyMODINIT_FUNC | 15522 PyMODINIT_FUNC |
15523 PyInit__string(void) | 15523 PyInit__string(void) |
15524 { | 15524 { |
15525 return PyModule_Create(&_string_module); | 15525 return PyModule_Create(&_string_module); |
15526 } | 15526 } |
15527 | 15527 |
15528 | 15528 |
15529 #ifdef __cplusplus | 15529 #ifdef __cplusplus |
15530 } | 15530 } |
15531 #endif | 15531 #endif |
LEFT | RIGHT |