summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2008-01-07 20:12:44 (GMT)
committerChristian Heimes <christian@cheimes.de>2008-01-07 20:12:44 (GMT)
commit3b06e5378ae21572a024b6484176b9678100ee53 (patch)
treed56a47c4e63a72ca999bf09c53093dcba3820b85 /Misc
parenta38f73b1bb327ceb1aad3a3001255ab81da91c22 (diff)
downloadcpython-3b06e5378ae21572a024b6484176b9678100ee53.zip
cpython-3b06e5378ae21572a024b6484176b9678100ee53.tar.gz
cpython-3b06e5378ae21572a024b6484176b9678100ee53.tar.bz2
Another patch for #1762972: __file__ points to the py file instead pyo/pyc file
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 0bd1248..8a77060 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 3.0a3?
Core and Builtins
-----------------
+- Issue #1762972: __file__ points to the source file instead of the pyc/pyo
+ file if the py file exists.
+
- Issue #1393: object_richcompare() returns NotImplemented instead of
False if the objects aren't equal, to give the other side a chance.