py2docfx 0.1.11rc1958248__py3-none-any.whl → 0.1.11rc1980947__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- py2docfx/docfx_yaml/convert_class.py +0 -1
- py2docfx/docfx_yaml/convert_enum.py +1 -4
- {py2docfx-0.1.11rc1958248.dist-info → py2docfx-0.1.11rc1980947.dist-info}/METADATA +1 -1
- {py2docfx-0.1.11rc1958248.dist-info → py2docfx-0.1.11rc1980947.dist-info}/RECORD +6 -6
- {py2docfx-0.1.11rc1958248.dist-info → py2docfx-0.1.11rc1980947.dist-info}/WHEEL +0 -0
- {py2docfx-0.1.11rc1958248.dist-info → py2docfx-0.1.11rc1980947.dist-info}/top_level.txt +0 -0
@@ -23,7 +23,6 @@ def convert_class(obj):
|
|
23
23
|
'name': old_class_object.get('name', None),
|
24
24
|
'fullName': old_class_object.get('fullName', None),
|
25
25
|
'module': old_class_object.get('module', None),
|
26
|
-
'inheritances': list(map(lambda x: x.get('type', None), old_class_object.get('inheritance', []))),
|
27
26
|
'summary': old_class_object.get('summary', None),
|
28
27
|
'constructor': None,
|
29
28
|
'variables': None,
|
@@ -23,17 +23,14 @@ def convert_enum(obj):
|
|
23
23
|
'summary': old_enum_object.get('summary', None),
|
24
24
|
'module': old_enum_object.get('module', None),
|
25
25
|
'remarks': old_enum_object.get('remarks', None),
|
26
|
-
'constructor': None,
|
27
26
|
'variables': None,
|
28
|
-
'inheritances': list(map(lambda x: x.get('type', None), old_enum_object.get('inheritance', []))),
|
29
27
|
'fields': None,
|
30
28
|
'metadata': None
|
31
29
|
}
|
32
30
|
|
33
|
-
|
31
|
+
_, variables = get_constructor_and_variables(
|
34
32
|
old_enum_object.get('syntax', {}), reference_mapping)
|
35
33
|
|
36
|
-
new_enum_object['constructor'] = constructor
|
37
34
|
new_enum_object['variables'] = variables
|
38
35
|
|
39
36
|
children = old_enum_object.get('children', [])
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: py2docfx
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.11rc1980947
|
4
4
|
Summary: A package built based on Sphinx which download source code package and generate yaml files supported by docfx.
|
5
5
|
Author: Microsoft Corporation
|
6
6
|
License: MIT License
|
@@ -56,8 +56,8 @@ py2docfx/docfx_yaml/__init__.py,sha256=KCEizAXv-SXtrYhvFfLHdBWDhz51AA9uagaeTL-It
|
|
56
56
|
py2docfx/docfx_yaml/build_finished.py,sha256=Oj6gG80L_58yksy1r6n2QAshF9gkngdS0fzglN6XvCc,13532
|
57
57
|
py2docfx/docfx_yaml/build_init.py,sha256=lAw-fnBVQbySfZ7Sut_NpFQUjnqLOmnGQrTBBH2RXcg,1860
|
58
58
|
py2docfx/docfx_yaml/common.py,sha256=UN1MUmjUoN1QSFDR1Cm_bfRuHr6FQiOe5VQV6s8xzjc,6841
|
59
|
-
py2docfx/docfx_yaml/convert_class.py,sha256=
|
60
|
-
py2docfx/docfx_yaml/convert_enum.py,sha256=
|
59
|
+
py2docfx/docfx_yaml/convert_class.py,sha256=xwSFnxMI9t4-ORxdJFAuNdfGTpREoj6yZNaeicyjtgs,2042
|
60
|
+
py2docfx/docfx_yaml/convert_enum.py,sha256=wIQpDnJCumRuapbxeNE-78Iq5ai3lWf3Nafya7FFNb8,1876
|
61
61
|
py2docfx/docfx_yaml/convert_module.py,sha256=IFd9hFr7tTmkJ4gdeAyRS1B99t31K1Adf1G1w1mRjOI,2140
|
62
62
|
py2docfx/docfx_yaml/convert_package.py,sha256=E7p-kCgvfTrY3auJq-zIk-Z1WnUGy7VpfnQU2HPzhNs,1990
|
63
63
|
py2docfx/docfx_yaml/directives.py,sha256=zVVuNM_6AU9G6sbqL1UAyHHgPe7bkBWbthXI-PO5ez0,879
|
@@ -123,7 +123,7 @@ py2docfx/docfx_yaml/tests/roots/test-writer-uri/conf.py,sha256=avcbnIOV2mlGQwhMQ
|
|
123
123
|
py2docfx/docfx_yaml/tests/roots/test-writer-versions/code_with_version_directives.py,sha256=UuizbrJPaG_PcaH18BvbI9KQevOaLd4SslpnzMSqcrE,1030
|
124
124
|
py2docfx/docfx_yaml/tests/roots/test-writer-versions/conf.py,sha256=SCEKrm9VigArfdgf-GAieJD-40d0ctT6urmGIjFOZLM,404
|
125
125
|
py2docfx/docfx_yaml/tests/utils/test_utils.py,sha256=d0OYSUQ6NyoZx5mlLdNGGNhiNmmQhjVT4hQ6jY3VE_M,3383
|
126
|
-
py2docfx-0.1.
|
127
|
-
py2docfx-0.1.
|
128
|
-
py2docfx-0.1.
|
129
|
-
py2docfx-0.1.
|
126
|
+
py2docfx-0.1.11rc1980947.dist-info/METADATA,sha256=VNUQrObCjepazDNf1qPeACxh0pmihuH9AJm7f1Es32M,599
|
127
|
+
py2docfx-0.1.11rc1980947.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
128
|
+
py2docfx-0.1.11rc1980947.dist-info/top_level.txt,sha256=5dH2uP81dczt_qQJ38wiZ-gzoVWasfiJALWRSjdbnYU,9
|
129
|
+
py2docfx-0.1.11rc1980947.dist-info/RECORD,,
|
File without changes
|
File without changes
|