hepheir / Python-HTML-Parser

🔥 beautifulsoup으로는 만족못해서 만들어보는 Python3.9 버전의 html 파싱기
MIT License
2 stars 0 forks source link

Implement `DOMString` type #18

Closed hepheir closed 3 years ago

hepheir commented 3 years ago

The DOMString type

To ensure interoperability, the DOM specifies the DOMString type as follows:

Note: As of August 1998, the OMG IDL specification included a wstring type. However, that definition did not meet the interoperability criteria of the DOM API since it relied on encoding negotiation to decide the width of a character.


https://www.w3.org/TR/REC-DOM-Level-1/level-one-core.html#ID-C74D1578

hepheir commented 3 years ago

현재는 DOMString을 str의 alias로 사용하고 있다.