mirror of
https://github.com/python/cpython.git
synced 2025-08-05 01:18:26 +00:00

This reduces the import time of the `csv` module by up to five times, by importing `re` on demand. In particular, the `re` module is no more implicitly exposed as `csv.re`.
3 lines
185 B
ReStructuredText
3 lines
185 B
ReStructuredText
Reduce the import time of :mod:`csv` by up to five times, by importing
|
|
:mod:`re` on demand. In particular, ``re`` is no more implicitly exposed
|
|
as ``csv.re``. Patch by Bénédikt Tran.
|