a2d9f3ce50
Remove six.moves Replace the following items with Python 3 style code. - six.moves.range - six.moves.xrange - six.text_type - six.PY2 - six.PY3 - six.moves.urllib - six.string_types - six.iteritems - six.add_metaclass - six.moves.map - six.with_metaclass - six.iterkeys - six.itervalues Change-Id: I469b49772899672c05f869c6870512fddfc6183d
19 lines
680 B
Python
19 lines
680 B
Python
# Copyright 2019 - Nokia Corporation
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
import inspect
|
|
|
|
|
|
def get_func_valid_keys(func):
|
|
return inspect.getfullargspec(func)[0]
|