From f69d7e13f6cd6eb8240d159fe9bbfc8dcd7a57bd Mon Sep 17 00:00:00 2001 From: Jason Paryani Date: Mon, 27 Oct 2014 12:56:01 -0700 Subject: [PATCH] Remove profiling from cython modules This also fixes the build problems with pypy --- capnp/lib/capnp.pyx | 1 - capnp/templates/module.pyx | 1 - 2 files changed, 2 deletions(-) diff --git a/capnp/lib/capnp.pyx b/capnp/lib/capnp.pyx index d428214..d134191 100644 --- a/capnp/lib/capnp.pyx +++ b/capnp/lib/capnp.pyx @@ -6,7 +6,6 @@ # cython: c_string_type = str # cython: c_string_encoding = default # cython: embedsignature = True -# cython: profile=True cimport cython diff --git a/capnp/templates/module.pyx b/capnp/templates/module.pyx index 9d959cd..df45582 100644 --- a/capnp/templates/module.pyx +++ b/capnp/templates/module.pyx @@ -7,7 +7,6 @@ # cython: c_string_type = str # cython: c_string_encoding = default # cython: embedsignature = True -# cython: profile=True {% macro getter(field, type) -%} {% if 'uint' in field['type'] -%}