This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author VertigoRay
Recipients VertigoRay, paul.moore, steve.dower, tim.golden, zach.ware
Date 2016-05-14.06:55:39
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1463208940.1.0.915796688613.issue27017@psf.upfronthosting.co.za>
In-reply-to
Content
This doesn't look like proper functionality

    Python 3.5.1 (v3.5.1:37a07cee5969, Dec  6 2015, 01:54:25) [MSC v.1900 64 bit (AMD64)] on win32
    Type "help", "copyright", "credits" or "license" for more information.
    >>> type('')
    <class 'str'>
    >>> type('').startswith('s')
    Traceback (most recent call last):
      File "<stdin>", line 1, in <module>
    TypeError: startswith() takes at least 1 argument (0 given)
    >>> type('').startswith('s', 's')
    True
History
Date User Action Args
2016-05-14 06:55:40VertigoRaysetrecipients: + VertigoRay, paul.moore, tim.golden, zach.ware, steve.dower
2016-05-14 06:55:40VertigoRaysetmessageid: <1463208940.1.0.915796688613.issue27017@psf.upfronthosting.co.za>
2016-05-14 06:55:39VertigoRaylinkissue27017 messages
2016-05-14 06:55:39VertigoRaycreate