[Python-checkins] r46373 - python/trunk/Objects/stringlib/partition.h
fredrik.lundh
python-checkins at python.org
Fri May 26 20:05:35 CEST 2006
Author: fredrik.lundh
Date: Fri May 26 20:05:34 2006
New Revision: 46373
Modified:
python/trunk/Objects/stringlib/partition.h
Log:
removed unnecessary include
Modified: python/trunk/Objects/stringlib/partition.h
==============================================================================
--- python/trunk/Objects/stringlib/partition.h (original)
+++ python/trunk/Objects/stringlib/partition.h Fri May 26 20:05:34 2006
@@ -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)
More information about the Python-checkins
mailing list