mirror of
https://github.com/AdaCore/cpython.git
synced 2026-02-12 12:57:15 -08:00
* Improve zipfile.Path performance on zipfiles with a large number of entries. * 📜🤖 Added by blurb_it. * Add bpo to blurb * Sync with importlib_metadata 1.5 (6fe70ca) * Update blurb. * Remove compatibility code * Add stubs module, omitted from earlier commit Co-authored-by: blurb-it[bot] <43283697+blurb-it[bot]@users.noreply.github.com>
11 lines
233 B
Python
11 lines
233 B
Python
import unittest
|
|
|
|
|
|
class fake_filesystem_unittest:
|
|
"""
|
|
Stubbed version of the pyfakefs module
|
|
"""
|
|
class TestCase(unittest.TestCase):
|
|
def setUpPyfakefs(self):
|
|
self.skipTest("pyfakefs not available")
|