From 758ca4f015901079b40fa1b0ce6e19801ead59c5 Mon Sep 17 00:00:00 2001 From: Michael Axiak Date: Mon, 24 Feb 2014 10:18:46 -0500 Subject: [PATCH] Upgrade to 0.3.13 --- setup.py | 2 +- src/pybloomfilter.c | 16 ++++++++-------- src/pybloomfilter.pyx | 2 +- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/setup.py b/setup.py index f41db24..dbfa0a9 100644 --- a/setup.py +++ b/setup.py @@ -55,7 +55,7 @@ requirements.append('importlib') setup(name='pybloomfiltermmap', - version="0.3.12", + version="0.3.13", author="Michael Axiak, Rob Stacey", author_email="mike@axiak.net", url="http://github.com/axiak/pybloomfiltermmap/", diff --git a/src/pybloomfilter.c b/src/pybloomfilter.c index 96b2cb4..6a303bd 100644 --- a/src/pybloomfilter.c +++ b/src/pybloomfilter.c @@ -1,4 +1,4 @@ -/* Generated by Cython 0.20.1 on Mon Feb 24 10:01:31 2014 */ +/* Generated by Cython 0.20.1 on Mon Feb 24 10:18:26 2014 */ #define PY_SSIZE_T_CLEAN #ifndef CYTHON_USE_PYLONG_INTERNALS @@ -1062,7 +1062,7 @@ static PyObject *__pyx_int_2; static PyObject *__pyx_int_3; static PyObject *__pyx_int_4; static PyObject *__pyx_int_9; -static PyObject *__pyx_int_12; +static PyObject *__pyx_int_13; static PyObject *__pyx_int_32; static PyObject *__pyx_int_493; static PyObject *__pyx_tuple__2; @@ -6523,11 +6523,11 @@ static int __Pyx_InitCachedConstants(void) { __Pyx_GIVEREF(__pyx_tuple__12); /* "pybloomfilter.pyx":1 - * VERSION = (0, 3, 12) # <<<<<<<<<<<<<< + * VERSION = (0, 3, 13) # <<<<<<<<<<<<<< * AUTHOR = "Michael Axiak" * */ - __pyx_tuple__13 = PyTuple_Pack(3, __pyx_int_0, __pyx_int_3, __pyx_int_12); if (unlikely(!__pyx_tuple__13)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_tuple__13 = PyTuple_Pack(3, __pyx_int_0, __pyx_int_3, __pyx_int_13); if (unlikely(!__pyx_tuple__13)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_tuple__13); __Pyx_GIVEREF(__pyx_tuple__13); __Pyx_RefNannyFinishContext(); @@ -6547,7 +6547,7 @@ static int __Pyx_InitGlobals(void) { __pyx_int_3 = PyInt_FromLong(3); if (unlikely(!__pyx_int_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_int_4 = PyInt_FromLong(4); if (unlikely(!__pyx_int_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_int_9 = PyInt_FromLong(9); if (unlikely(!__pyx_int_9)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;} - __pyx_int_12 = PyInt_FromLong(12); if (unlikely(!__pyx_int_12)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;} + __pyx_int_13 = PyInt_FromLong(13); if (unlikely(!__pyx_int_13)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_int_32 = PyInt_FromLong(32); if (unlikely(!__pyx_int_32)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_int_493 = PyInt_FromLong(493); if (unlikely(!__pyx_int_493)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;} return 0; @@ -6658,14 +6658,14 @@ PyMODINIT_FUNC PyInit_pybloomfilter(void) /*--- Execution code ---*/ /* "pybloomfilter.pyx":1 - * VERSION = (0, 3, 12) # <<<<<<<<<<<<<< + * VERSION = (0, 3, 13) # <<<<<<<<<<<<<< * AUTHOR = "Michael Axiak" * */ if (PyDict_SetItem(__pyx_d, __pyx_n_s_VERSION, __pyx_tuple__13) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;} /* "pybloomfilter.pyx":2 - * VERSION = (0, 3, 12) + * VERSION = (0, 3, 13) * AUTHOR = "Michael Axiak" # <<<<<<<<<<<<<< * * __VERSION__ = VERSION @@ -6854,7 +6854,7 @@ PyMODINIT_FUNC PyInit_pybloomfilter(void) PyType_Modified(__pyx_ptype_13pybloomfilter_BloomFilter); /* "pybloomfilter.pyx":1 - * VERSION = (0, 3, 12) # <<<<<<<<<<<<<< + * VERSION = (0, 3, 13) # <<<<<<<<<<<<<< * AUTHOR = "Michael Axiak" * */ diff --git a/src/pybloomfilter.pyx b/src/pybloomfilter.pyx index f5d935e..3c25947 100644 --- a/src/pybloomfilter.pyx +++ b/src/pybloomfilter.pyx @@ -1,4 +1,4 @@ -VERSION = (0, 3, 12) +VERSION = (0, 3, 13) AUTHOR = "Michael Axiak" __VERSION__ = VERSION