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 pekka.klarck
Recipients gvanrossum, levkivskyi, pekka.klarck
Date 2018-09-05.15:50:05
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1536162605.79.0.56676864532.issue34568@psf.upfronthosting.co.za>
In-reply-to
Content
My concerns with the behavior of `__origin__` possibly changing in the future seem to valid. In Python 3.5 and 3.6 the behavior is 

    List.__origin__ is None
    List[int].__origin__ is List

while in Python 3.7

    List.__origin is list
    List[int].__origin__ is list

Is it likely that this is going to change again or can I rely on the current behavior with Python 3.7+?
History
Date User Action Args
2018-09-05 15:50:05pekka.klarcksetrecipients: + pekka.klarck, gvanrossum, levkivskyi
2018-09-05 15:50:05pekka.klarcksetmessageid: <1536162605.79.0.56676864532.issue34568@psf.upfronthosting.co.za>
2018-09-05 15:50:05pekka.klarcklinkissue34568 messages
2018-09-05 15:50:05pekka.klarckcreate