Mercurial > hg > ooxml
comparison notes.txt @ 55:05cf88c20cc5
sample I/O pair, with range annotations
author | Henry S. Thompson <ht@markup.co.uk> |
---|---|
date | Tue, 30 May 2017 09:52:49 +0100 |
parents | 191c95187e87 |
children | adeb9575b273 |
comparison
equal
deleted
inserted
replaced
54:191c95187e87 | 55:05cf88c20cc5 |
---|---|
1 | |
1 Tokenisation patterns, derived from parse.py, derived from | 2 Tokenisation patterns, derived from parse.py, derived from |
2 https://sites.google.com/site/e90e50/random-topics/tool-for-parsing-formulas-in-excel | 3 https://sites.google.com/site/e90e50/random-topics/tool-for-parsing-formulas-in-excel |
3 and | 4 and |
4 parser_formule_with_textbox_v01_2003.xla | 5 parser_formule_with_textbox_v01_2003.xla |
5 linked to therein | 6 linked to therein |
238 with... We are now getting e.g. <x>2.509+0.482+0.238</x> | 239 with... We are now getting e.g. <x>2.509+0.482+0.238</x> |
239 in enron1k/kenneth_lay__19506 | 240 in enron1k/kenneth_lay__19506 |
240 | 241 |
241 We could _either_ add a class of operators, or a class of numbers? | 242 We could _either_ add a class of operators, or a class of numbers? |
242 | 243 |
244 ============== | |
245 Python : sys.version_info(major=2, minor=7, micro=13, releaselevel='final', serial=0) | |
246 lxml.etree : (3, 6, 4, 0) | |
247 libxml used : (2, 9, 2) | |
248 libxml compiled : (2, 9, 2) | |
249 libxslt used : (1, 1, 29) | |
250 libxslt compiled : (1, 1, 29) | |
251 | |
252 testa works | |
253 ---------- | |
254 Python : sys.version_info(major=2, minor=7, micro=13, releaselevel='final', serial=0) | |
255 lxml.etree : (3, 7, 3, 0) | |
256 libxml used : (2, 9, 2) | |
257 libxml compiled : (2, 9, 2) | |
258 libxslt used : (1, 1, 29) | |
259 libxslt compiled : (1, 1, 29) | |
260 | |
261 testa works | |
262 --------- | |
263 Python : sys.version_info(major=2, minor=7, micro=13, releaselevel='final', serial=0) | |
264 lxml.etree : (3, 7, 3, 0) | |
265 libxml used : (2, 9, 4) | |
266 libxml compiled : (2, 9, 4) | |
267 libxslt used : (1, 1, 29) | |
268 libxslt compiled : (1, 1, 29) | |
269 | |
270 testa fails | |
271 ----------- | |
272 Python : sys.version_info(major=2, minor=7, micro=13, releaselevel='final', serial=0) | |
273 lxml.etree : (3, 7, 3, 0) | |
274 libxml used : (2, 9, 3) | |
275 libxml compiled : (2, 9, 3) | |
276 libxslt used : (1, 1, 29) | |
277 libxslt compiled : (1, 1, 29) | |
278 | |
279 testa works |