summaryrefslogtreecommitdiff
path: root/heatclient/common/base.py
Commit message (Collapse)AuthorAgeFilesLines
* Remove sixTakashi Kajinami2022-05-091-4/+2
| | | | | | | This library no longer supports Python 2, thus usage of six can be removed. Change-Id: I8d0c1cfd6dff375b3b7756a5b36c95a2df3f04c6
* Cleanup of .keys() from dict_object.keys() *in* operatorjacky062019-12-051-1/+1
| | | | Change-Id: I49bb58e5dc2618ee02424315e4e3bf1057a77068
* Replace six.iteritems() with .items()M V P Nitesh2017-03-311-2/+2
| | | | | | | | | | | | 1.As mentioned in [1], we should avoid using six.iteritems to achieve iterators. We can use dict.items instead, as it will return iterators in PY3 as well. And dict.items/keys will more readable. 2.In py2, the performance about list should be negligible, see the link [2]. [1] https://wiki.openstack.org/wiki/Python3 [2] http://lists.openstack.org/pipermail/openstack-dev/2015-June/066391.html Change-Id: I3913e8876b34e112140788d7a405da6eedfb5f29
* Remove LOG Warning from __eq__Rob Cresswell2017-01-041-8/+0
| | | | | | | | This causes a huge amount of spam on anything that does an equality check, like tests. We should just remove it. Change-Id: Ibb1a2132ab784ae357d965bd0997f419be568651 Closes-Bug: 1653975
* Move required modules from oslo-incubatorrabi2016-11-121-0/+523
| | | | | | | | | | | | Move the required module to heatclient/common. - heatclient/openstack/common/apiclient/base.py It also moves some required functions and exceptions from heatclient/openstack/common/cliutils.py and heatclient/openstack/common/exceptions.py. Change-Id: I68704c7fab9417492d8390ad05a9797f78d46907
* Remove unused common.base moduleAndrey Kurilin2014-01-111-134/+0
| | | | | | | Base module is already replaced with a module from oslo common code, but was not removed. This patch must fix this. Change-Id: I8f5c4da8884db4024d47ca8d1a80dbb648922a31
* Use the six library for compatabilityKui Shi2013-10-221-1/+2
| | | | | | | | | | Replace dict.iteritems() with six.iteritems(dict) Import six for StringIO Import urlutils for urlencode Partial implement: blueprint py33-support Change-Id: Ieae1299915168ef10ff54e0a9e9a346350e9d1fb
* Replace OpenStack LLC with OpenStack FoundationZhiQiang Fan2013-09-201-1/+1
| | | | | Change-Id: I8f2697ca99192078d5db2adb4db98287520d9895 Fixes-Bug: #1214176
* Fix all but H302 hacking rules.Angus Salkeld2013-06-271-7/+9
| | | | Change-Id: Iac329617428b851df42579d5bd0b299d2f6e2c0a
* Fix all the pep8 E* and F* errors.Angus Salkeld2013-06-271-1/+1
| | | | Change-Id: I34bab949e4795073544c64c9796237c60ace4d65
* Fix various smaller pep8 issuesDirk Mueller2013-06-201-2/+2
| | | | Change-Id: Icc015418e0e231311ac0a0cc507fa3f8842d8811
* Initial importSteve Baker2012-10-101-0/+131