diff options
author | Leonard Richardson <leonardr@segfault.org> | 2023-02-12 12:38:41 -0500 |
---|---|---|
committer | Leonard Richardson <leonardr@segfault.org> | 2023-02-12 12:38:41 -0500 |
commit | 172c1cf61b979e07f5534563e4926d00e7edd521 (patch) | |
tree | cccec19135263a74e1ab2d1d041e8b847dd28285 /CHANGELOG | |
parent | a01835fcf30959eb286850b6c5fd1dd7ef52bd4c (diff) |
Improved documentation of new method.
Diffstat (limited to 'CHANGELOG')
-rw-r--r-- | CHANGELOG | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -13,7 +13,7 @@ Python 2 was revision 70f546b1e689a70e2f103795efce6d261a3dadf7. This does mean one addition to the BeautifulSoup and Tag classes (the .css property itself), so this might be a breaking change if you happen to use Beautiful Soup to parse XML that includes a tag called - <css>. In particular, code like this will not work in 4.12.0: + <css>. In particular, code like this will stop working in 4.12.0: soup.css['id'] @@ -23,9 +23,9 @@ Python 2 was revision 70f546b1e689a70e2f103795efce6d261a3dadf7. The Soup Sieve methods supported through the .css property are select(), select_one(), iselect(), closest(), match(), filter(), - and escape(). The BeautifulSoup and Tag classes still support the - select() and select_one() methods; they have not been deprecated, - but they have been demoted to convenience methods. + escape(), and compile(). The BeautifulSoup and Tag classes still + support the select() and select_one() methods; they have not been + deprecated, but they have been demoted to convenience methods. [bug=2003677] |