Uwe Hartwig
Uwe Hartwig
@boxed Thank you for pointing this out, I wasn't aware of this! Many thanks! Setting values using `enum.auto()` wipes some mutations. Still, some mutations survive: ``` - NO_DIR = enum.auto()...
@boxed I guess this happens by the way traversing with `os.walk` is done. If you comsume subdirs like in https://github.com/boxed/mutmut/blob/c59fc4b99f03abfe409ba8c0f90e4bbd8a9d574a/mutmut/__init__.py#L1223 you have only `B` , not `main/B`. Give this a...
Hello, I miss this API too. Are there any further plans regarding this issue?
The official Postgres-Docs (please see above) do close the `Statement`-Object after attaching to a Channel, where the example Snippet at pgjdbc-ng-Docs doesn't. Is this just missing in the later one...
I switched Job Position, so I can't access one of those Windows-Server-Machines right away. Since on an Ubuntu-Machine the Process runs without Issues (unfortunately, it was decided to deploy App...
Another guess regarding the data included in the standard `frk` model: since the notably large word list (+450.000 entries, which is _really_ hard to gain with _real_ historical print data)...
Something related: extract METS/MODS from xml_doc created from OAI-Response like this: ``` mets_root_el = xml_root.find('.//mets:mets', XMLNS) if mets_root_el is not None: return ET.ElementTree(mets_root_el) ```
Snippet for METS/MODS fileGrp, using wl/bl approach: ```python def clear_fileGroups(xml_root, black_list=None, white_list=None): file_sections = xml_root.findall('.//mets:fileSec', XMLNS) if not file_sections or (len(file_sections) < 1): raise Exception('invalid xml data !') for file_section...
Also convenient: re-index all METS-Filegroups _after_ any undesired reference entries were dropped.
Point taken! Just copied the ocrd_logging.conf _without_ any change to `$USER_HOME` and have to learn that suddenly out of nowhere 7 tests go fail; Changed PILs Log level as you...