py.user <port...@yandex.ru> added the comment: "+ returning a list containing the resulting substrings. If + capturing parentheses are used in pattern, then the text of all + groups in the pattern are also returned as part of the resulting + list."
not only text >>> import re >>> re.split(r'(a)(x)?', 'abcabc') ['', 'a', None, 'bc', 'a', None, 'bc'] >>> ---------- _______________________________________ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue14244> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com