我知道,pydoc模块有一些情况,但没有一个对我有帮助。
首先,我的项目结构如下:
Model_folder
$listStyle = 'multilevel';
$phpWord->addNumberingStyle(
$listStyle,
array(
'type' => 'multilevel',
'levels' => array(
array('format' => 'upperLetter', 'text' => '%1.', 'left' => 360, 'hanging' => 360),
array('format' => 'decimal', 'text' => '%2.', 'left' => 400),
),
);
);
$prgphStyle = array('spaceBefore' => 0, 'spaceAfter' => 0);
$section->addText('Multilevel list.');
$section->addListItem('Part One:', 0, $boldStyle, $listStyle, $prgphStyle);
// here i want to add text
$section->addListItem('Item 1', 1, null, $listStyle, $prgphStyle);
//
$section->addListItem('Part Two:', 0, $boldStyle, $listStyle, array('spaceBefore' => 120, 'spaceAfter' => 0));
$item1Text = 'Item 1'; // can be formatted, like bold, italics
$section->addListItem("$item1Text ", 1, null, $listStyle, $prgphStyle);
$section->addListItem('Item 2', 0, null, $listStyle, $prgphStyle);
我创建了一个简单的批处理文件,在Model_Folder的每个文件夹中运行pydoc模块,如下所示:
folder_1
subfolder_1
python_file_1
python_file_2
subfolder_2
folder_2
subfolder_1
python_file_1
...
python_file_10
subfolder_2
subfolder_3
folder_3
...
folder_4
...
批处理文件正在运行,但是当我尝试评估其中一个模块时出现错误:
folder_1.subfolder_1.python_file_1.html中的问题 - 没有名为folder_2的模块
为模块做pydoc文档是有问题的,我从其他模块导入了什么东西?因为我正在从folder_1中的python_file_1中的folder_2导入一些函数。