Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(154)

Side by Side Diff: mojo/public/third_party/markupsafe/_speedups.c

Issue 799113004: Update mojo sdk to rev 59145288bae55b0fce4276b017df6a1117bcf00f (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add mojo's ply to checklicenses whitelist Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
OLDNEW
« no previous file with comments | « mojo/public/third_party/markupsafe/_native.py ('k') | mojo/public/third_party/markupsafe/get_markupsafe.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698