Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
FluidDoc
提交
05d5b00b
F
FluidDoc
项目概览
PaddlePaddle
/
FluidDoc
通知
5
Star
2
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
23
列表
看板
标记
里程碑
合并请求
111
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
F
FluidDoc
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
23
Issue
23
列表
看板
标记
里程碑
合并请求
111
合并请求
111
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
05d5b00b
编写于
8月 25, 2020
作者:
C
chentianyu03
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
adapt to python3
上级
3c4c712f
变更
1
显示空白变更内容
内联
并排
Showing
1 changed file
with
4 addition
and
5 deletion
+4
-5
doc/paddle/api/gen_doc.py
doc/paddle/api/gen_doc.py
+4
-5
未找到文件。
doc/paddle/api/gen_doc.py
浏览文件 @
05d5b00b
...
@@ -90,7 +90,7 @@ def is_filter_api(api):
...
@@ -90,7 +90,7 @@ def is_filter_api(api):
return
True
return
True
#check api in alias map
#check api in alias map
if
a
lias_api_map
.
has_key
(
api
)
:
if
a
pi
in
alias_api_map
:
return
False
return
False
#check api start with paddle.fluid
#check api start with paddle.fluid
...
@@ -109,7 +109,7 @@ def is_filter_api(api):
...
@@ -109,7 +109,7 @@ def is_filter_api(api):
#if the api in alias_map key, others api is alias api
#if the api in alias_map key, others api is alias api
for
x
in
same_apis
:
for
x
in
same_apis
:
if
alias_api_map
.
has_key
(
x
)
:
if
x
in
alias_api_map
:
return
True
return
True
if
len
(
same_apis
)
>
1
:
if
len
(
same_apis
)
>
1
:
...
@@ -129,7 +129,7 @@ def is_filter_api(api):
...
@@ -129,7 +129,7 @@ def is_filter_api(api):
def
get_display_api
(
api
):
def
get_display_api
(
api
):
# recomment alias api
# recomment alias api
if
api
.
startswith
(
"paddle.fluid"
)
and
a
lias_api_map
.
has_key
(
api
)
:
if
api
.
startswith
(
"paddle.fluid"
)
and
a
pi
in
alias_api_map
:
return
alias_api_map
[
api
][
0
]
return
alias_api_map
[
api
][
0
]
else
:
else
:
return
api
return
api
...
@@ -213,8 +213,7 @@ class EnDocGenerator(object):
...
@@ -213,8 +213,7 @@ class EnDocGenerator(object):
#print("attribute error: module_name=" + self.module_name + ", api=" + self.api)
#print("attribute error: module_name=" + self.module_name + ", api=" + self.api)
pass
pass
else
:
else
:
if
isinstance
(
if
isinstance
(
eval
(
self
.
module_name
+
"."
+
self
.
api
),
type
):
eval
(
self
.
module_name
+
"."
+
self
.
api
),
types
.
TypeType
):
self
.
print_class
()
self
.
print_class
()
elif
isinstance
(
elif
isinstance
(
eval
(
self
.
module_name
+
"."
+
self
.
api
),
eval
(
self
.
module_name
+
"."
+
self
.
api
),
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录