beautifulsoup:4.13

Last commit made on 2024-03-25
Get this branch:
git clone -b 4.13 https://git.launchpad.net/beautifulsoup
Only Leonard Richardson can upload to this branch. If you are Leonard Richardson please log in for upload directions.

Branch merges

Branch information

Name:
4.13
Repository:
lp:beautifulsoup

Recent commits

d6df7c0... by Leonard Richardson

* Defined a new iterator, PageElement.self_and_parents, which is the same
  as PageElement.parents except it yields the element itself before
  yielding its parents. [bug=2052936] TODO NEEDS DOC

* Similarly, the PageElement.find_parent() and
  PageElement.find_parents methods take an argument include_self,
  which lets you treat the element itself as one of its
  'parents'. [bug=2052936] TODO NEEDS DOC

c93a399... by Leonard Richardson

Fixed dependency.

6867f2d... by Leonard Richardson

Added basic apidoc.

a3dbb2a... by Leonard Richardson

Fixed issues with the apidoc build.

a222fb8... by Leonard Richardson

Made my decision about what the ElementFilter API should look like. For the sake of a simpler API, if you want to customize the pre-parse filtering you need to subclass.

cfb3808... by Leonard Richardson

Changed type imports to restore support for older Python versions.

ef67432... by Leonard Richardson

Use bytestring instead of string in document--this was making it look like .original_encoding didn't work.

6f60ca0... by Leonard Richardson

Include py.typed with the wheel.

8c9c677... by Leonard Richardson

Added py.typed per PEP-0561.

ee00cf1... by Leonard Richardson

A few more minor strict type fixes.