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 Anthony Sottile
Recipients Anthony Sottile
Date 2015-12-22.23:10:44
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1450825845.31.0.1486283683.issue25930@psf.upfronthosting.co.za>
In-reply-to
Content
I've confirmed this bug is present on both windows and linux, the outputs below are from linux however.

Compare:

```
$ python3.4 --version
Python 3.4.3
$ python3.4 -c 'import os; print(os.unlink == os.remove)'
True
```

```
$ python3.5 --version
Python 3.5.0
$ python3.5 -c 'import os; print(os.unlink == os.remove)'
False
```

The docs say: https://docs.python.org/3/library/os.html#os.remove

"This function is identical to unlink()."

To me identity means `is` but I at least expect the `==` behaviour of previous versions.
History
Date User Action Args
2015-12-22 23:10:45Anthony Sottilesetrecipients: + Anthony Sottile
2015-12-22 23:10:45Anthony Sottilesetmessageid: <1450825845.31.0.1486283683.issue25930@psf.upfronthosting.co.za>
2015-12-22 23:10:45Anthony Sottilelinkissue25930 messages
2015-12-22 23:10:44Anthony Sottilecreate