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 eryksun
Recipients Anthony Sottile, eryksun, larry
Date 2015-12-22.23:56:54
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1450828615.0.0.431158149984.issue25930@psf.upfronthosting.co.za>
In-reply-to
Content
This is due to using argument clinic in Modules/posixmodule.c:

    /*[clinic input]
    os.remove = os.unlink

builtin_function_or_method instances are equal if m_self (the module in this case) and m_ml->ml_meth (the C function) are the same. In 3.4, the function posix_unlink is used for both os.unlink and os.remove, which is why they compare as equal. In 3.5, argument clinic defines separate os_unlink and os_remove implementations in Modules/clinic/posixmodule.c.h.
History
Date User Action Args
2015-12-22 23:56:55eryksunsetrecipients: + eryksun, larry, Anthony Sottile
2015-12-22 23:56:54eryksunsetmessageid: <1450828615.0.0.431158149984.issue25930@psf.upfronthosting.co.za>
2015-12-22 23:56:54eryksunlinkissue25930 messages
2015-12-22 23:56:54eryksuncreate