Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 02efa09

Browse files
committedOct 14, 2018
update depr version and warning type to future
1 parent 7097092 commit 02efa09

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎pandas/io/parsers.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@
323323
delimiters are prone to ignoring quoted data. Regex example: ``'\r\t'``
324324
delimiter : str, default ``None``
325325
Alternative argument name for sep.
326-
.. deprecated:: 0.23.4
326+
.. deprecated:: 0.24.0
327327
Use sep argument instead.
328328
"""
329329

@@ -640,7 +640,7 @@ def parser_f(filepath_or_buffer,
640640
delimiter = sep
641641
else:
642642
warnings.warn("delimiter is deprecated, please use sep instead.",
643-
DeprecationWarning, stacklevel=2)
643+
FutureWarning, stacklevel=2)
644644

645645
if delim_whitespace and delimiter != default_sep:
646646
raise ValueError("Specified a delimiter with both sep and"

0 commit comments

Comments
 (0)
Please sign in to comment.