summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorDong-hee Na <donghee.na92@gmail.com>2017-11-28 16:26:56 (GMT)
committerÉric Araujo <merwok@users.noreply.github.com>2017-11-28 16:26:56 (GMT)
commita489599793f9b00ddc2c68e2ce3bce9cbb2c09a2 (patch)
treea10f20e7292be409e720293bed9dbed87281c330 /Misc
parent598ceae876ff4a23072e59945597e945583de4ab (diff)
downloadcpython-a489599793f9b00ddc2c68e2ce3bce9cbb2c09a2.zip
cpython-a489599793f9b00ddc2c68e2ce3bce9cbb2c09a2.tar.gz
cpython-a489599793f9b00ddc2c68e2ce3bce9cbb2c09a2.tar.bz2
bpo-32046: Update 2to3 when converts operator.isCallable(obj). (#4417)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2017-11-16-20-09-45.bpo-32046.9sGDtw.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2017-11-16-20-09-45.bpo-32046.9sGDtw.rst b/Misc/NEWS.d/next/Library/2017-11-16-20-09-45.bpo-32046.9sGDtw.rst
new file mode 100644
index 0000000..a6fc3c4
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2017-11-16-20-09-45.bpo-32046.9sGDtw.rst
@@ -0,0 +1,2 @@
+Updates 2to3 to convert from operator.isCallable(obj) to callable(obj).
+Patch by Dong-hee Na.