Re: [Python-Dev] [Python-checkins] r86745 - in python/branches/py3k: Doc/library/difflib.rst Lib/difflib.py Lib/test/test_difflib.py Misc/NEWS

2010-11-27 Thread Nick Coghlan
On Thu, Nov 25, 2010 at 4:12 PM, terry.reedy python-check...@python.org wrote:  The :class:`SequenceMatcher` class has this constructor: -.. class:: SequenceMatcher(isjunk=None, a='', b='') +.. class:: SequenceMatcher(isjunk=None, a='', b='', autojunk=True)    Optional argument *isjunk*

Re: [Python-Dev] [Python-checkins] r86745 - in python/branches/py3k: Doc/library/difflib.rst Lib/difflib.py Lib/test/test_difflib.py Misc/NEWS

2010-11-27 Thread Eli Bendersky
On Sat, Nov 27, 2010 at 14:17, Nick Coghlan ncogh...@gmail.com wrote: On Thu, Nov 25, 2010 at 4:12 PM, terry.reedy python-check...@python.org wrote: The :class:`SequenceMatcher` class has this constructor: -.. class:: SequenceMatcher(isjunk=None, a='', b='') +.. class::

Re: [Python-Dev] [Python-checkins] r86745 - in python/branches/py3k: Doc/library/difflib.rst Lib/difflib.py Lib/test/test_difflib.py Misc/NEWS

2010-11-27 Thread Michael Foord
On 27/11/2010 13:00, Eli Bendersky wrote: On Sat, Nov 27, 2010 at 14:17, Nick Coghlan ncogh...@gmail.com mailto:ncogh...@gmail.com wrote: On Thu, Nov 25, 2010 at 4:12 PM, terry.reedy python-check...@python.org mailto:python-check...@python.org wrote: The

Re: [Python-Dev] [Python-checkins] r86745 - in python/branches/py3k: Doc/library/difflib.rst Lib/difflib.py Lib/test/test_difflib.py Misc/NEWS

2010-11-27 Thread Nick Coghlan
On Sat, Nov 27, 2010 at 11:02 PM, Michael Foord fuzzy...@voidspace.org.uk wrote: Features new in Python 3.2 that didn't exist in 3.1 should have a versionadded:: 3.2 tag. As Michael said, from a docs point of view, the version flow is independent: 2.6 - 2.7 and 3.1 - 3.2. The issue has really

Re: [Python-Dev] [Python-checkins] r86745 - in python/branches/py3k: Doc/library/difflib.rst Lib/difflib.py Lib/test/test_difflib.py Misc/NEWS

2010-11-27 Thread Terry Reedy
On 11/27/2010 7:17 AM, Nick Coghlan wrote: On Thu, Nov 25, 2010 at 4:12 PM, terry.reedypython-check...@python.org wrote: The :class:`SequenceMatcher` class has this constructor: -.. class:: SequenceMatcher(isjunk=None, a='', b='') +.. class:: SequenceMatcher(isjunk=None, a='', b='',