@@ -164,6 +164,8 @@ def read_csv(
164164 This function accepts Unix shell-style wildcards in the path argument.
165165 * (matches everything), ? (matches any single character),
166166 [seq] (matches any character in seq), [!seq] (matches any character not in seq).
167+ If you want to use a path which includes Unix shell-style wildcard characters (`*, ?, []`),
168+ you can use `glob.escape(path)` before passing the path to this function.
167169
168170 Note
169171 ----
@@ -304,6 +306,8 @@ def read_fwf(
304306 This function accepts Unix shell-style wildcards in the path argument.
305307 * (matches everything), ? (matches any single character),
306308 [seq] (matches any character in seq), [!seq] (matches any character not in seq).
309+ If you want to use a path which includes Unix shell-style wildcard characters (`*, ?, []`),
310+ you can use `glob.escape(path)` before passing the path to this function.
307311
308312 Note
309313 ----
@@ -445,6 +449,8 @@ def read_json(
445449 This function accepts Unix shell-style wildcards in the path argument.
446450 * (matches everything), ? (matches any single character),
447451 [seq] (matches any character in seq), [!seq] (matches any character not in seq).
452+ If you want to use a path which includes Unix shell-style wildcard characters (`*, ?, []`),
453+ you can use `glob.escape(path)` before passing the path to this function.
448454
449455 Note
450456 ----
0 commit comments