Python _abcoll.ItemsView() Examples
The following are 30
code examples of _abcoll.ItemsView().
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example.
You may also want to check out all available functions/classes of the module
_abcoll
, or try the search function
.
Example #1
Source File: compat.py From Safejumper-for-Desktop with GNU General Public License v2.0 | 5 votes |
def viewitems(self): "od.viewitems() -> a set-like object providing a view on od's items" return ItemsView(self)
Example #2
Source File: ordered_dict.py From kodi with GNU General Public License v3.0 | 5 votes |
def viewitems(self): "od.viewitems() -> a set-like object providing a view on od's items" return ItemsView(self)
Example #3
Source File: compat.py From GraphicDesignPatternByPython with MIT License | 5 votes |
def viewitems(self): "od.viewitems() -> a set-like object providing a view on od's items" return ItemsView(self)
Example #4
Source File: ordered_dict.py From Fluid-Designer with GNU General Public License v3.0 | 5 votes |
def viewitems(self): "od.viewitems() -> a set-like object providing a view on od's items" return ItemsView(self)
Example #5
Source File: ordered_dict.py From pySINDy with MIT License | 5 votes |
def viewitems(self): "od.viewitems() -> a set-like object providing a view on od's items" return ItemsView(self)
Example #6
Source File: ordered_dict.py From kodi with GNU General Public License v3.0 | 5 votes |
def viewitems(self): "od.viewitems() -> a set-like object providing a view on od's items" return ItemsView(self)
Example #7
Source File: compat.py From hacktoberfest2018 with GNU General Public License v3.0 | 5 votes |
def viewitems(self): "od.viewitems() -> a set-like object providing a view on od's items" return ItemsView(self)
Example #8
Source File: ordered_dict.py From hacktoberfest2018 with GNU General Public License v3.0 | 5 votes |
def viewitems(self): "od.viewitems() -> a set-like object providing a view on od's items" return ItemsView(self)
Example #9
Source File: compat.py From hacktoberfest2018 with GNU General Public License v3.0 | 5 votes |
def viewitems(self): "od.viewitems() -> a set-like object providing a view on od's items" return ItemsView(self)
Example #10
Source File: ordered_dict.py From hacktoberfest2018 with GNU General Public License v3.0 | 5 votes |
def viewitems(self): "od.viewitems() -> a set-like object providing a view on od's items" return ItemsView(self)
Example #11
Source File: ordered_dict.py From quickstart-taskcat-ci with Apache License 2.0 | 5 votes |
def viewitems(self): "od.viewitems() -> a set-like object providing a view on od's items" return ItemsView(self)
Example #12
Source File: compat.py From deepWordBug with Apache License 2.0 | 5 votes |
def viewitems(self): "od.viewitems() -> a set-like object providing a view on od's items" return ItemsView(self)
Example #13
Source File: compat.py From pex with Apache License 2.0 | 5 votes |
def viewitems(self): "od.viewitems() -> a set-like object providing a view on od's items" return ItemsView(self)
Example #14
Source File: ordered_dict.py From satori with Apache License 2.0 | 5 votes |
def viewitems(self): "od.viewitems() -> a set-like object providing a view on od's items" return ItemsView(self)
Example #15
Source File: ordered_dict.py From Safejumper-for-Desktop with GNU General Public License v2.0 | 5 votes |
def viewitems(self): "od.viewitems() -> a set-like object providing a view on od's items" return ItemsView(self)
Example #16
Source File: ordered_dict.py From deepWordBug with Apache License 2.0 | 5 votes |
def viewitems(self): "od.viewitems() -> a set-like object providing a view on od's items" return ItemsView(self)
Example #17
Source File: compat.py From anpr with Creative Commons Attribution 4.0 International | 5 votes |
def viewitems(self): "od.viewitems() -> a set-like object providing a view on od's items" return ItemsView(self)
Example #18
Source File: ordered_dict.py From anpr with Creative Commons Attribution 4.0 International | 5 votes |
def viewitems(self): "od.viewitems() -> a set-like object providing a view on od's items" return ItemsView(self)
Example #19
Source File: ordereddict.py From streamlink with BSD 2-Clause "Simplified" License | 5 votes |
def viewitems(self): "od.viewitems() -> a set-like object providing a view on od's items" return ItemsView(self)
Example #20
Source File: compat.py From Mastering-Elasticsearch-7.0 with MIT License | 5 votes |
def viewitems(self): "od.viewitems() -> a set-like object providing a view on od's items" return ItemsView(self)
Example #21
Source File: compat.py From Mastering-Elasticsearch-7.0 with MIT License | 5 votes |
def viewitems(self): "od.viewitems() -> a set-like object providing a view on od's items" return ItemsView(self)
Example #22
Source File: ordered_dict.py From crunchy-xml-decoder with GNU General Public License v2.0 | 5 votes |
def viewitems(self): "od.viewitems() -> a set-like object providing a view on od's items" return ItemsView(self)
Example #23
Source File: ordered_dict.py From oss-ftp with MIT License | 5 votes |
def viewitems(self): "od.viewitems() -> a set-like object providing a view on od's items" return ItemsView(self)
Example #24
Source File: compat.py From oss-ftp with MIT License | 5 votes |
def viewitems(self): "od.viewitems() -> a set-like object providing a view on od's items" return ItemsView(self)
Example #25
Source File: ordered_dict.py From oss-ftp with MIT License | 5 votes |
def viewitems(self): "od.viewitems() -> a set-like object providing a view on od's items" return ItemsView(self)
Example #26
Source File: ordered_dict.py From oss-ftp with MIT License | 5 votes |
def viewitems(self): "od.viewitems() -> a set-like object providing a view on od's items" return ItemsView(self)
Example #27
Source File: ordered_dict.py From oss-ftp with MIT License | 5 votes |
def viewitems(self): "od.viewitems() -> a set-like object providing a view on od's items" return ItemsView(self)
Example #28
Source File: ordered_dict.py From wow-addon-updater with GNU General Public License v3.0 | 5 votes |
def viewitems(self): "od.viewitems() -> a set-like object providing a view on od's items" return ItemsView(self)
Example #29
Source File: __init__.py From Computable with MIT License | 5 votes |
def viewitems(self): """od.viewitems() -> a set-like object providing a view on od's items """ return ItemsView(self) # {{{ http://code.activestate.com/recipes/576611/ (r11)
Example #30
Source File: ordereddict.py From moltemplate with MIT License | 5 votes |
def viewitems(self): "od.viewitems() -> a set-like object providing a view on od's items" return ItemsView(self)