summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2014-08-23 14:14:15 +0200
committerStefan Behnel <stefan_ml@behnel.de>2014-08-23 14:14:15 +0200
commit08267b8804649c3704ccadd7dca128c38d6b5e98 (patch)
treef1cee4d1a945646866a743a48f7ee9982c5ab84f
parentd45020f02f7a7323b5dc4efb0736311cf23b16e7 (diff)
downloadcython-08267b8804649c3704ccadd7dca128c38d6b5e98.tar.gz
remove outdated comment
-rw-r--r--Cython/Utility/arrayarray.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/Cython/Utility/arrayarray.h b/Cython/Utility/arrayarray.h
index e79a06ab6..7c07b735a 100644
--- a/Cython/Utility/arrayarray.h
+++ b/Cython/Utility/arrayarray.h
@@ -118,7 +118,6 @@ static CYTHON_INLINE int resize(arrayobject *self, Py_ssize_t n) {
}
// suitable for small increments; over allocation 50% ;
-// Remains non-smart in Python 2.3- ; but exists for compatibility
static CYTHON_INLINE int resize_smart(arrayobject *self, Py_ssize_t n) {
void *items = (void*) self->data.ob_item;
Py_ssize_t newsize;