Yoda Lee

Results 24 comments of Yoda Lee

here is my result of testing: `d=PyQuery() `print(d('#container > div'))``` I got: ``, I think the result is a little strange at the `` tag, but it do get two...

I think it's weird to return with text1 prepend. Since the text1 is the text of previous tag, in this case ``.

I think we can discuss about this. Since children() will return a pyquery object, and a prepend text is not proper in a pyquery object. For example if I try:...

There are two problem in this issue: ``` p = pq('').append('footbar') print(p) # this will be fine ``` However, first if you call ``` print(p.contents()) ``` There will be error...

Is there any testing data and expected output / real output? Since I'm not quite sure what's the problem of this issue.

I trace this question, the "div tr:first" will be translated into `descendant-or-self::div/descendant-or-self::*/tr[position() = 1]` which will get the wrong result instead of this `descendant-or-self::div/descendant-or-self::tr[position() = 1]` However, the descendant-or-self::\* is...

initial trace, there is a slightly difference on pyquery.py:69 f2.html will cause "etree.XMLSyntaxError" by the &copy, and use lxml.html parser to parse the result, and get the right result OAO

I think this is related to issue #31, that XMLSyntaxError cause lxml use html parser, and get the right result in the end.

With my latest yosys ``` $ yosys -version Yosys 0.20+22 (git sha1 556d008ed, gcc 12.1.1 -march=x86-64 -mtune=generic -O2 -fstack-protector-strong -fno-plt -fPIC -Os) ``` The error message is improved: ``` $...

I face same problem, I think you did not do `git lfs pull` after you clone the project.