Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Path.rglob fails with *.* on Python 3.11.0a7 #91616

Closed
Labels
3.11only security fixesstdlibStandard Library Python modules in the Lib/ directorytopic-regextype-bugAn unexpected behavior, bug, or error
@domdfcoding

Description

@domdfcoding

Bug report

On Python 3.11.0a7, callingPath.rglob("*.*") returns an iterator over no files, whereas on previous versions (including alpha 6) it would correctly return an iterator over all files in the directory and all of its children.

The following code illustrates this problem:

importpathlib,tempfile,pprintwithtempfile.TemporaryDirectory()astmpdir:tmp_path=pathlib.Path(tmpdir)(tmp_path/"a.txt").touch()(tmp_path/"b.txt").touch()(tmp_path/"c").mkdir()(tmp_path/"c"/"d.txt").touch()pprint.pprint(list(tmp_path.rglob("*.*")))pprint.pprint(list(tmp_path.rglob("*.txt")))

Save this aspathlib_rglob.py.

Output:

$python3.11 pathlib_rglob.py[][PosixPath('/tmp/tmpngjo2cyn/a.txt'), PosixPath('/tmp/tmpngjo2cyn/b.txt'), PosixPath('/tmp/tmpngjo2cyn/c/d.txt')]$python3.10 pathlib_rglob.py[PosixPath('/tmp/tmpodfbqyhx/a.txt'), PosixPath('/tmp/tmpodfbqyhx/b.txt'), PosixPath('/tmp/tmpodfbqyhx/c/d.txt')][PosixPath('/tmp/tmpodfbqyhx/a.txt'), PosixPath('/tmp/tmpodfbqyhx/b.txt'), PosixPath('/tmp/tmpodfbqyhx/c/d.txt')]$# This is Python 3.11.0a6 built from source$~/python311a6/bin/python3.11 pathlib_rglob.py[PosixPath('/tmp/tmpobellcrw/a.txt'), PosixPath('/tmp/tmpobellcrw/b.txt'), PosixPath('/tmp/tmpobellcrw/c/d.txt')][PosixPath('/tmp/tmpobellcrw/a.txt'), PosixPath('/tmp/tmpobellcrw/b.txt'), PosixPath('/tmp/tmpobellcrw/c/d.txt')]

After much debugging I have tracked the issue to#32029
With that change,fnmatch.translate("*.*") gives(?s:(?>.*?\.).*)\Z.
With the change reverted (or on 3.11.0a6) its(?s:(?=(?P<g0>.*?\.))(?P=g0).*)\Z.
I don't know what the difference between those amounts to, but the former doesn't work while the latter does:

>>>importre>>>re.fullmatch('(?s:(?>.*?\\.).*)\\Z',"a.txt")>>>re.fullmatch('(?s:(?=(?P<g0>.*?\\.))(?P=g0).*)\\Z',"a.txt")<re.Matchobject;span=(0,5),match='a.txt'>

Your environment

  • CPython versions tested on: 3.10.4, 3.11.0a6, 3.11.0a7, built from git checkouts of the relevant tag.
  • Operating system and architecture: Ubuntu 20.04 amd64

Metadata

Metadata

Assignees

No one assigned

    Labels

    3.11only security fixesstdlibStandard Library Python modules in the Lib/ directorytopic-regextype-bugAn unexpected behavior, bug, or error

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions


      [8]ページ先頭

      ©2009-2025 Movatter.jp