I'm probably overly stressing a well understood point here that urllib.parse is incredibly widely used and critical to many foundational libraries in Python. But I just came across this today that:
conda is migrating from urllib3 for parsing to urllib.parse: https://github.com/conda/conda/pull/11373 And not to mention urllib3 itself somewhat depends on urllib.parse: https://github.com/urllib3/urllib3/search?q=urllib.parse Damian (he/him) On Tue, Mar 29, 2022 at 6:59 PM Alex Waygood <[email protected]> wrote: > There's also the "Experts index" in the devguide: > https://devguide.python.org/experts/#experts > > Best, > Alex > > -------- Original message -------- > From: Skip Montanaro <[email protected]> > Date: 29/03/2022 22:36 (GMT+00:00) > To: "Eric V. Smith" <[email protected]> > Cc: Python Dev <[email protected]> > Subject: [Python-Dev] Re: Are "Batteries Included" still a Good Thing? > [was: It's now time to deprecate the stdlib urllib module] > > There's the CODEOWNERS file: >> https://github.com/python/cpython/blob/main/.github/CODEOWNERS > > > Thanks. Never would have thought there was such a thing. I was looking for > files with "maintain" in them. Skimming it, it would seem that most of the > stuff in Lib or Modules isn't really associated with a particular person or > small group. > > Skip > _______________________________________________ > Python-Dev mailing list -- [email protected] > To unsubscribe send an email to [email protected] > https://mail.python.org/mailman3/lists/python-dev.python.org/ > Message archived at > https://mail.python.org/archives/list/[email protected]/message/CN7SXNP2D4ML4U2OBIUC4DGQOKEYNSKE/ > Code of Conduct: http://python.org/psf/codeofconduct/ >
_______________________________________________ Python-Dev mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3/lists/python-dev.python.org/ Message archived at https://mail.python.org/archives/list/[email protected]/message/QYCAECVPQEZ5JX7LTLDA3IWB6CUUUOZ5/ Code of Conduct: http://python.org/psf/codeofconduct/
