diff options
author | Fredrik Lundh <fredrik@pythonware.com> | 2006-05-26 18:05:34 (GMT) |
---|---|---|
committer | Fredrik Lundh <fredrik@pythonware.com> | 2006-05-26 18:05:34 (GMT) |
commit | be9f219e40fb0b817bd248234a0b89727b1295e3 (patch) | |
tree | 731cc4edcc08cc04ebb28568da4ef59fb47e6a1a | |
parent | f4ef11659cda2ef0d56df499525818a132e6836a (diff) | |
download | cpython-be9f219e40fb0b817bd248234a0b89727b1295e3.zip cpython-be9f219e40fb0b817bd248234a0b89727b1295e3.tar.gz cpython-be9f219e40fb0b817bd248234a0b89727b1295e3.tar.bz2 |
removed unnecessary include
-rw-r--r-- | Objects/stringlib/partition.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Objects/stringlib/partition.h b/Objects/stringlib/partition.h index 498bc19..38afb33 100644 --- a/Objects/stringlib/partition.h +++ b/Objects/stringlib/partition.h @@ -3,8 +3,6 @@ #ifndef STRINGLIB_PARTITION_H #define STRINGLIB_PARTITION_H -#include "stringlib/fastsearch.h" - Py_LOCAL(PyObject*) partition(PyObject* str_obj, const STRINGLIB_CHAR* str, Py_ssize_t str_len, PyObject* sep_obj, const STRINGLIB_CHAR* sep, Py_ssize_t sep_len) |