Skip to content

Commit 6d8cd09

Browse files
Removing ZIP file for PR#34366
1 parent 95b0ae3 commit 6d8cd09

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

doc/source/development/code_style.rst

-12
Original file line numberDiff line numberDiff line change
@@ -173,15 +173,3 @@ Reading from a url
173173
from pandas.io.common import urlopen
174174
with urlopen('http://www.google.com') as url:
175175
raw_text = url.read()
176-
177-
178-
Reading a file named file.txt that's inside of a zip file named file.zip
179-
------------------------------------------------------------------------
180-
181-
**Good:**
182-
183-
.. code-block:: python
184-
185-
from pandas.io.common import ZipFile
186-
with ZipFile('file.zip') as zf:
187-
raw_text = zf.read('file.txt')

0 commit comments

Comments
 (0)