File: objectify.pyi

package info (click to toggle)
python-canmatrix 1.2~github-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 11,012 kB
  • sloc: xml: 30,201; python: 14,631; makefile: 31; sh: 7
file content (13 lines) | stat: -rw-r--r-- 330 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
# Hand-written stub, incomplete

from typing import Union

from lxml.etree import ElementBase, XMLParser

class ObjectifiedElement(ElementBase):
    pass

def fromstring(text: Union[bytes, str],
               parser: XMLParser = ...,
               *,
               base_url: Union[bytes, str] = ...) -> ObjectifiedElement: ...