Commit 41da0994 authored by Denis Bilenko's avatar Denis Bilenko

regenerate core.c

parent 8e9eee45
/* Generated by Cython 0.12.1 on Thu Apr 22 17:56:00 2010 */
/* Generated by Cython 0.12.1 on Sat May 15 17:12:19 2010 */
#define PY_SSIZE_T_CLEAN
#include "Python.h"
......@@ -657,7 +657,7 @@ static char __pyx_k_27[] = "Expected str or buffer: %r";
static char __pyx_k_28[] = "Internal error in evhttp_add_header";
static char __pyx_k_29[] = "HttpConnectionDeleted";
static char __pyx_k_30[] = "<%s _obj=0x%x%s>";
static char __pyx_k_31[] = "Failed to handle request: %s\n\n";
static char __pyx_k_31[] = "%s: Failed to handle request: %s\n\n";
static char __pyx_k_32[] = "Content-type";
static char __pyx_k_33[] = "text/plain";
static char __pyx_k_34[] = "Content-length";
......@@ -12273,7 +12273,7 @@ static void __pyx_f_6gevent_4core__http_cb_handler(struct evhttp_request *__pyx
* except:
* traceback.print_exc() # <<<<<<<<<<<<<<
* try:
* sys.stderr.write('Failed to handle request: %s\n\n' % (req, ))
* sys.stderr.write('%s: Failed to handle request: %s\n\n' % (server, req, ))
*/
__pyx_t_6 = __Pyx_GetName(__pyx_m, __pyx_n_s__traceback); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 466; __pyx_clineno = __LINE__; goto __pyx_L5_except_error;}
__Pyx_GOTREF(__pyx_t_6);
......@@ -12289,7 +12289,7 @@ static void __pyx_f_6gevent_4core__http_cb_handler(struct evhttp_request *__pyx
* except:
* traceback.print_exc()
* try: # <<<<<<<<<<<<<<
* sys.stderr.write('Failed to handle request: %s\n\n' % (req, ))
* sys.stderr.write('%s: Failed to handle request: %s\n\n' % (server, req, ))
* except:
*/
{
......@@ -12303,7 +12303,7 @@ static void __pyx_f_6gevent_4core__http_cb_handler(struct evhttp_request *__pyx
/* "/home/denis/work/gevent/gevent/evhttp.pxi":468
* traceback.print_exc()
* try:
* sys.stderr.write('Failed to handle request: %s\n\n' % (req, )) # <<<<<<<<<<<<<<
* sys.stderr.write('%s: Failed to handle request: %s\n\n' % (server, req, )) # <<<<<<<<<<<<<<
* except:
* traceback.print_exc()
*/
......@@ -12315,10 +12315,13 @@ static void __pyx_f_6gevent_4core__http_cb_handler(struct evhttp_request *__pyx
__pyx_t_6 = PyObject_GetAttr(__pyx_t_7, __pyx_n_s__write); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 468; __pyx_clineno = __LINE__; goto __pyx_L14_error;}
__Pyx_GOTREF(__pyx_t_6);
__Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0;
__pyx_t_7 = PyTuple_New(1); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 468; __pyx_clineno = __LINE__; goto __pyx_L14_error;}
__pyx_t_7 = PyTuple_New(2); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 468; __pyx_clineno = __LINE__; goto __pyx_L14_error;}
__Pyx_GOTREF(__pyx_t_7);
__Pyx_INCREF(((PyObject *)__pyx_v_server));
PyTuple_SET_ITEM(__pyx_t_7, 0, ((PyObject *)__pyx_v_server));
__Pyx_GIVEREF(((PyObject *)__pyx_v_server));
__Pyx_INCREF(((PyObject *)__pyx_v_req));
PyTuple_SET_ITEM(__pyx_t_7, 0, ((PyObject *)__pyx_v_req));
PyTuple_SET_ITEM(__pyx_t_7, 1, ((PyObject *)__pyx_v_req));
__Pyx_GIVEREF(((PyObject *)__pyx_v_req));
__pyx_t_8 = PyNumber_Remainder(((PyObject *)__pyx_kp_s_31), __pyx_t_7); if (unlikely(!__pyx_t_8)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 468; __pyx_clineno = __LINE__; goto __pyx_L14_error;}
__Pyx_GOTREF(__pyx_t_8);
......@@ -12345,7 +12348,7 @@ static void __pyx_f_6gevent_4core__http_cb_handler(struct evhttp_request *__pyx
/* "/home/denis/work/gevent/gevent/evhttp.pxi":469
* try:
* sys.stderr.write('Failed to handle request: %s\n\n' % (req, ))
* sys.stderr.write('%s: Failed to handle request: %s\n\n' % (server, req, ))
* except: # <<<<<<<<<<<<<<
* traceback.print_exc()
* # without clearing exc_info a reference to the request is somehow leaked
......@@ -12358,7 +12361,7 @@ static void __pyx_f_6gevent_4core__http_cb_handler(struct evhttp_request *__pyx
__Pyx_GOTREF(__pyx_t_6);
/* "/home/denis/work/gevent/gevent/evhttp.pxi":470
* sys.stderr.write('Failed to handle request: %s\n\n' % (req, ))
* sys.stderr.write('%s: Failed to handle request: %s\n\n' % (server, req, ))
* except:
* traceback.print_exc() # <<<<<<<<<<<<<<
* # without clearing exc_info a reference to the request is somehow leaked
......
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