diff options
author | Anthony Sottile <asottile@umich.edu> | 2019-03-08 18:58:00 (GMT) |
---|---|---|
committer | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2019-03-08 18:58:00 (GMT) |
commit | ab9b31f94737895f0121f26ba3ad718ebbc24fe1 (patch) | |
tree | 5891d2056a0f382f4f3a53a24a8d2b97069f8186 /Misc | |
parent | 8a1bab92915dd5c88832706c56af2f5611181d50 (diff) | |
download | cpython-ab9b31f94737895f0121f26ba3ad718ebbc24fe1.zip cpython-ab9b31f94737895f0121f26ba3ad718ebbc24fe1.tar.gz cpython-ab9b31f94737895f0121f26ba3ad718ebbc24fe1.tar.bz2 |
bpo-35843: Implement __getitem__ for _NamespacePath (GH-11690)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2019-01-28-10-19-40.bpo-35843.7rXGQE.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-01-28-10-19-40.bpo-35843.7rXGQE.rst b/Misc/NEWS.d/next/Library/2019-01-28-10-19-40.bpo-35843.7rXGQE.rst new file mode 100644 index 0000000..1a9eaf0 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2019-01-28-10-19-40.bpo-35843.7rXGQE.rst @@ -0,0 +1 @@ +Implement ``__getitem__`` for ``_NamespacePath``. Patch by Anthony Sottile. |