You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
# Copyright (c) 2010-2024 openpyxl
|
|
|
|
|
|
def namespaced(obj, tagname, namespace=None):
|
|
"""
|
|
Utility to create a namespaced tag for an object
|
|
"""
|
|
|
|
namespace = getattr(obj, "namespace", None) or namespace
|
|
if namespace is not None:
|
|
tagname = "{%s}%s" % (namespace, tagname)
|
|
return tagname
|