Changeset 1599d99 in rtems-docs
- Timestamp:
- 02/27/19 22:16:57 (5 years ago)
- Branches:
- 5, master
- Children:
- 4407039
- Parents:
- 9c3a383
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
posix-compliance/posix_rst.py
r9c3a383 r1599d99 143 143 144 144 def load(self, name): 145 with open(name, 'r b') as f:145 with open(name, 'r') as f: 146 146 data = csv.reader(f, delimiter = ',', quotechar = '"') 147 147 hdr = None -
wscript
r9c3a383 r1599d99 8 8 import waflib 9 9 10 # 11 # Set Python's system path to `common` from the top level so the 12 # conf.py modules in subdirectories can be found. See xml_catalogue in 13 # common/waf.py. 14 # 15 sys.path.append(os.path.abspath('common')) 16 10 17 from common import waf as docs_waf 11 18 from common import version … … 15 22 # 16 23 rtems_major_version = '5' 17 18 #19 # Set Python's system path to `common` from the top level so the20 # conf.py modules in subdirectories can be found. See xml_catalogue in21 # common/waf.py.22 #23 sys.path.append(os.path.abspath('common'))24 24 25 25 #
Note: See TracChangeset
for help on using the changeset viewer.