~pythonregexp2.7/python/issue2636

« back to all changes in this revision

Viewing changes to Objects/unicodeobject.c

  • Committer: Jeffrey C. "The TimeHorse" Jacobs
  • Date: 2008-05-24 16:05:21 UTC
  • mfrom: (39021.1.401 Regexp-2.6)
  • Revision ID: darklord@timehorse.com-20080524160521-1xenj7p6u3wb89et
Merged in changes from the latest python source snapshot.

Show diffs side-by-side

added added

removed removed

Lines of Context:
7494
7494
\n\
7495
7495
Return a list of the words in S, using sep as the\n\
7496
7496
delimiter string.  If maxsplit is given, at most maxsplit\n\
7497
 
splits are done. If sep is not specified or is None,\n\
7498
 
any whitespace string is a separator.");
 
7497
splits are done. If sep is not specified or is None, any\n\
 
7498
whitespace string is a separator and empty strings are\n\
 
7499
removed from the result.");
7499
7500
 
7500
7501
static PyObject*
7501
7502
unicode_split(PyUnicodeObject *self, PyObject *args)