← Back to team overview

yahoo-eng-team team mailing list archive

[Bug 1936667] Re: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated since Python 3.3

 

Reviewed:  https://review.opendev.org/c/openstack/keystone/+/801083
Committed: https://opendev.org/openstack/keystone/commit/d3044ad238e381c6a7346990354e76d1a8fed741
Submitter: "Zuul (22348)"
Branch:    master

commit d3044ad238e381c6a7346990354e76d1a8fed741
Author: Takashi Kajinami <tkajinam@xxxxxxxxxx>
Date:   Sat Jul 17 00:42:02 2021 +0900

    Replace deprecated import of ABCs from collections
    
    ABCs in collections should be imported from collections.abc and direct
    import from collections is deprecated since Python 3.3.
    
    Closes-Bug: #1936667
    Change-Id: I12b570cd6d6abda17a68aac6a35ae8193d9c22b4


** Changed in: keystone
       Status: In Progress => Fix Released

-- 
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to OpenStack Identity (keystone).
https://bugs.launchpad.net/bugs/1936667

Title:
  Using or importing the ABCs from 'collections' instead of from
  'collections.abc' is deprecated since Python 3.3

Status in OpenStack Identity (keystone):
  Fix Released
Status in OpenStack Shared File Systems Service (Manila):
  Fix Released
Status in Mistral:
  In Progress
Status in neutron:
  Fix Released
Status in OpenStack Object Storage (swift):
  Fix Released
Status in tacker:
  In Progress
Status in taskflow:
  Fix Released
Status in tempest:
  Fix Released
Status in zaqar:
  Fix Released

Bug description:
  Using or importing the ABCs from 'collections' instead of from
  'collections.abc' is deprecated since Python 3.3.

  For example:

  >>> import collections 
  >>> collections.Iterable
  <stdin>:1: DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated since Python 3.3, and in 3.10 it will stop working
  <class 'collections.abc.Iterable'>

  >>> from collections import abc
  >>> abc.Iterable
  <class 'collections.abc.Iterable'>

To manage notifications about this bug go to:
https://bugs.launchpad.net/keystone/+bug/1936667/+subscriptions



References