Gael Pasgrimaud

Results 10 issues of Gael Pasgrimaud

# Impacted versions * OS Type: Debian * OS Version: Bullseye * Database Type: MySQL * Database version: X.y * Modoboa: 2.0.1 * installer used: No * Webserver: Apache #...

bug

Namespace support is lacking in the documentation

``` python html = """ text1text2 text3text4 """ tree = pq(html) for a in tree('a'): a = pq(a) print a.children() ``` Prints: ``` text2 text4 ``` Instead of: ``` text1text2...

Lane Stevens created an issue 2012-07-18 I have include two files. The first file is a proper subset of the second. In the first file, the p and div elements...

namespaces should be removed by default

Philipp Moeller created an issue 2012-09-28 pyquery borks, e.g., on the following filter: ``` python filter(lambda i: PyQuery(this).hasClass("memitem\\\\:")) ``` As far as I can tell this is true for every...

dwt created an issue 2012-06-05 If you use code like this ``` python print someCollection.map(lambda index, each: PyQuery(each).text()) ``` it explodes as it can't deal with the fact that the...

Antti Kaihola created an issue 2010-02-09 Consider this example: ``` python >>> doc = PyQuery('') >>> doc('div p') [] >>> divs = doc('div') >>> divs.__class__ >>> doc('p', divs) [, ]...

elijahr created an issue 2009-12-20 ``` html = """ C D E F """ import pyquery q = pyquery.PyQuery(html) ul = q.find('ul').not_('div > ul') print ul #CDEF # should be...

This PR allow to use Django 4.2 to 5.1. A test was added to prove the need of get_sequences (will solve #567) Also there is the need to take care...