diff options
author | Dong-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) |
commit | a489599793f9b00ddc2c68e2ce3bce9cbb2c09a2 (patch) | |
tree | a10f20e7292be409e720293bed9dbed87281c330 /Misc | |
parent | 598ceae876ff4a23072e59945597e945583de4ab (diff) | |
download | cpython-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.rst | 2 |
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. |