Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
pytensor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
testgroup
pytensor
Commits
3e5549fe
提交
3e5549fe
authored
4月 10, 2008
作者:
turian@grenat.iro.umontreal.ca
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Updating epydoc documentation.
上级
899c9a07
隐藏空白字符变更
内嵌
并排
正在显示
5 个修改的文件
包含
13 行增加
和
13 行删除
+13
-13
epydoc
epydoc
+2
-3
epydoc-fast
epydoc-fast
+2
-3
epydoc-fast.sh
epydoc-fast.sh
+1
-0
epydoc.sh
epydoc.sh
+1
-0
op.py
gof/op.py
+7
-7
没有找到文件。
epydoc
浏览文件 @
3e5549fe
...
...
@@ -7,8 +7,7 @@
# The list of objects to document. Objects can be named using
# dotted names, module filenames, or package directory names.
# Alases for this option include "objects" and "values".
#modules: *.py, gof/*.py, tlearn/*.py, joseph/*.py, scipy, numpy
modules: *.py, gof/*.py, tlearn/*.py, scipy, numpy
modules: *.py, gof/*.py, joseph/*.py, tlearn/*.py, scipy, numpy
# The type of output that should be generated. Should be one
# of: html, text, latex, dvi, ps, pdf.
...
...
@@ -136,7 +135,7 @@ dotpath: /usr/bin/dot
# The name of one or more pstat files (generated by the profile
# or hotshot module). These are used to generate call graphs.
#pstat: sparse
.pstat
pstat: autotest
.pstat
# Specify the font used to generate Graphviz graphs.
# (e.g., helvetica or times).
...
...
epydoc-fast
浏览文件 @
3e5549fe
...
...
@@ -7,8 +7,7 @@
# The list of objects to document. Objects can be named using
# dotted names, module filenames, or package directory names.
# Alases for this option include "objects" and "values".
#modules: *.py, gof/*.py, tlearn/*.py, joseph/*.py
modules: *.py, gof/*.py, tlearn/*.py
modules: *.py, gof/*.py, joseph/*.py, tlearn/*.py
# The type of output that should be generated. Should be one
# of: html, text, latex, dvi, ps, pdf.
...
...
@@ -136,7 +135,7 @@ dotpath: /usr/bin/dot
# The name of one or more pstat files (generated by the profile
# or hotshot module). These are used to generate call graphs.
#pstat: sparse
.pstat
pstat: autotest
.pstat
# Specify the font used to generate Graphviz graphs.
# (e.g., helvetica or times).
...
...
epydoc-fast.sh
浏览文件 @
3e5549fe
#!/bin/sh
# python -m profile -o autotest.pstat autotest.py
epydoc
--config
epydoc-fast
epydoc.sh
浏览文件 @
3e5549fe
#!/bin/sh
python
-m
profile
-o
autotest.pstat autotest.py
epydoc
--config
epydoc
gof/op.py
浏览文件 @
3e5549fe
...
...
@@ -17,7 +17,7 @@ __all__ = ['Op',
def
constructor
(
op_cls
):
"""Make an Op look like a
Result
-valued function."""
"""Make an Op look like a
L{Result}
-valued function."""
def
f
(
*
args
,
**
kwargs
):
op
=
op_cls
(
*
args
,
**
kwargs
)
if
len
(
op
.
outputs
)
>
1
:
...
...
@@ -28,12 +28,12 @@ def constructor(op_cls):
class
Op
(
object
):
"""
Op
represents a computation on the storage in its 'inputs' slot,
the results of which are stored in the
Result
instances in the
'outputs' slot. The owner of each
Result
in the outputs list must
be set to this
Op and thus any Result
instance is in the outputs
list of at most one
Op
, its owner. It is the responsibility of the
Op
to ensure that it owns its outputs and it is encouraged (though
L{Op}
represents a computation on the storage in its 'inputs' slot,
the results of which are stored in the
L{Result}
instances in the
'outputs' slot. The owner of each
L{Result}
in the outputs list must
be set to this
L{Op} and thus any L{Result}
instance is in the outputs
list of at most one
L{Op}
, its owner. It is the responsibility of the
L{Op}
to ensure that it owns its outputs and it is encouraged (though
not required) that it creates them.
"""
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论