From 9334ec0d935e885dbcca5b79e05c983320f19c1c Mon Sep 17 00:00:00 2001 From: VSC-Service-Account Date: Mon, 11 Dec 2023 18:02:43 +0000 Subject: [PATCH 01/10] CI Update Build.Reason:Schedule Build.Url:https://apidrop.visualstudio.com/Content%20CI/_build/results?buildId=402274&view=results --- python/docs-ref-autogen/toc.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/python/docs-ref-autogen/toc.yml b/python/docs-ref-autogen/toc.yml index 4641cd3..144544c 100644 --- a/python/docs-ref-autogen/toc.yml +++ b/python/docs-ref-autogen/toc.yml @@ -34,4 +34,3 @@ - name: msal uid: msal name: msal - From e2829fdd1ee44176d6fe07ea6abdb1b604955968 Mon Sep 17 00:00:00 2001 From: Den Delimarsky <53200638+localden@users.noreply.github.com> Date: Wed, 3 Jan 2024 11:05:33 -0800 Subject: [PATCH 02/10] Update linkchecker.yml --- .github/worfklows/linkchecker.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/worfklows/linkchecker.yml b/.github/worfklows/linkchecker.yml index 42c0e65..f0cbc2a 100644 --- a/.github/worfklows/linkchecker.yml +++ b/.github/worfklows/linkchecker.yml @@ -1,4 +1,4 @@ -name: Validate content links +name: Validate existing links on: push: @@ -15,7 +15,7 @@ jobs: - name: Link Checker id: lychee - uses: lycheeverse/lychee-action@v1.6.1 + uses: lycheeverse/lychee-action@master env: GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} with: @@ -24,8 +24,8 @@ jobs: - name: Create Issue From File if: always() && env.lychee_exit_code != 0 && github.event_name != 'pull_request' - uses: peter-evans/create-issue-from-file@v4 + uses: peter-evans/create-issue-from-file@main with: title: Link Checker Report content-filepath: ./lychee/out.md - labels: report, automated issue \ No newline at end of file + labels: report, automated issue From ee7f72e9f4b7c86967c06367e7a1122ae8ece49c Mon Sep 17 00:00:00 2001 From: Den Delimarsky <53200638+localden@users.noreply.github.com> Date: Wed, 3 Jan 2024 11:06:29 -0800 Subject: [PATCH 03/10] Update linkchecker.yml --- .github/worfklows/linkchecker.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/worfklows/linkchecker.yml b/.github/worfklows/linkchecker.yml index f0cbc2a..34ea7d4 100644 --- a/.github/worfklows/linkchecker.yml +++ b/.github/worfklows/linkchecker.yml @@ -1,4 +1,4 @@ -name: Validate existing links +name: Validate links on: push: From 564ad901b50eb01965e7bfc6a43f2fc401be7d75 Mon Sep 17 00:00:00 2001 From: Den Delimarsky <53200638+localden@users.noreply.github.com> Date: Wed, 3 Jan 2024 11:07:07 -0800 Subject: [PATCH 04/10] Create linkvalidator.yml --- .github/workflows/linkvalidator.yml | 31 +++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 .github/workflows/linkvalidator.yml diff --git a/.github/workflows/linkvalidator.yml b/.github/workflows/linkvalidator.yml new file mode 100644 index 0000000..f0cbc2a --- /dev/null +++ b/.github/workflows/linkvalidator.yml @@ -0,0 +1,31 @@ +name: Validate existing links + +on: + push: + repository_dispatch: + workflow_dispatch: + schedule: + - cron: "00 18 * * *" + +jobs: + linkChecker: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + + - name: Link Checker + id: lychee + uses: lycheeverse/lychee-action@master + env: + GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} + with: + args: --verbose --exclude-file .lycheeignore --no-progress './**/*.md' --exclude-mail + fail: true + + - name: Create Issue From File + if: always() && env.lychee_exit_code != 0 && github.event_name != 'pull_request' + uses: peter-evans/create-issue-from-file@main + with: + title: Link Checker Report + content-filepath: ./lychee/out.md + labels: report, automated issue From 68a898a793659b8968c997b901634045e6e3e87f Mon Sep 17 00:00:00 2001 From: Den Delimarsky <53200638+localden@users.noreply.github.com> Date: Wed, 3 Jan 2024 11:07:31 -0800 Subject: [PATCH 05/10] Delete .github/worfklows/linkchecker.yml --- .github/worfklows/linkchecker.yml | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 .github/worfklows/linkchecker.yml diff --git a/.github/worfklows/linkchecker.yml b/.github/worfklows/linkchecker.yml deleted file mode 100644 index 34ea7d4..0000000 --- a/.github/worfklows/linkchecker.yml +++ /dev/null @@ -1,31 +0,0 @@ -name: Validate links - -on: - push: - repository_dispatch: - workflow_dispatch: - schedule: - - cron: "00 18 * * *" - -jobs: - linkChecker: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - - name: Link Checker - id: lychee - uses: lycheeverse/lychee-action@master - env: - GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} - with: - args: --verbose --exclude-file .lycheeignore --no-progress './**/*.md' --exclude-mail - fail: true - - - name: Create Issue From File - if: always() && env.lychee_exit_code != 0 && github.event_name != 'pull_request' - uses: peter-evans/create-issue-from-file@main - with: - title: Link Checker Report - content-filepath: ./lychee/out.md - labels: report, automated issue From 4bf9ae2de70c3892daffb5aba0ae2afc08cc246e Mon Sep 17 00:00:00 2001 From: Den Delimarsky <53200638+localden@users.noreply.github.com> Date: Wed, 3 Jan 2024 11:15:38 -0800 Subject: [PATCH 06/10] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 680630e..75e31e5 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Microsoft Authentication Library (MSAL) for Python Documentation -[![Validate content links](https://github.com/MicrosoftDocs/microsoft-authentication-library-for-python/actions/workflows/linkchecker.yml/badge.svg)](https://github.com/MicrosoftDocs/microsoft-authentication-library-for-python/actions/workflows/linkchecker.yml) +[![Validate existing links](https://github.com/MicrosoftDocs/microsoft-authentication-library-for-python/actions/workflows/linkvalidator.yml/badge.svg)](https://github.com/MicrosoftDocs/microsoft-authentication-library-for-python/actions/workflows/linkvalidator.yml) This is the documentation repository for Microsoft Authentication Library (MSAL) for Python. If you are looking for the library, refer to [AzureAD/microsoft-authentication-library-for-python](https://github.com/AzureAD/microsoft-authentication-library-for-python). From df2a9b9dd3f5bec82f1c65cf78a51a5fd8aeb0a2 Mon Sep 17 00:00:00 2001 From: Den Delimarsky <53200638+localden@users.noreply.github.com> Date: Wed, 3 Jan 2024 11:37:57 -0800 Subject: [PATCH 07/10] Create .lycheeignore --- .github/workflows/.lycheeignore | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .github/workflows/.lycheeignore diff --git a/.github/workflows/.lycheeignore b/.github/workflows/.lycheeignore new file mode 100644 index 0000000..75a0f86 --- /dev/null +++ b/.github/workflows/.lycheeignore @@ -0,0 +1,6 @@ +https://aka.ms/msal/estsr/guidance +xref:.+ +https://go.microsoft.com/fwlink/\?linkid=2083908 +https://endpoint.microsoft.com.+ +https://portal.azure.com.+ +https://account.microsoft.com.+ From d148253fd2f2a8097d2ed57c1db2cbca4ab5eaba Mon Sep 17 00:00:00 2001 From: Den Delimarsky <53200638+localden@users.noreply.github.com> Date: Wed, 3 Jan 2024 11:43:25 -0800 Subject: [PATCH 08/10] Delete .github/workflows/.lycheeignore --- .github/workflows/.lycheeignore | 6 ------ 1 file changed, 6 deletions(-) delete mode 100644 .github/workflows/.lycheeignore diff --git a/.github/workflows/.lycheeignore b/.github/workflows/.lycheeignore deleted file mode 100644 index 75a0f86..0000000 --- a/.github/workflows/.lycheeignore +++ /dev/null @@ -1,6 +0,0 @@ -https://aka.ms/msal/estsr/guidance -xref:.+ -https://go.microsoft.com/fwlink/\?linkid=2083908 -https://endpoint.microsoft.com.+ -https://portal.azure.com.+ -https://account.microsoft.com.+ From fd0cfe1360aec94e9469ed3c75ff5348dcdf99c2 Mon Sep 17 00:00:00 2001 From: Den Delimarsky <53200638+localden@users.noreply.github.com> Date: Wed, 3 Jan 2024 11:43:53 -0800 Subject: [PATCH 09/10] Create .lycheeignore --- .lycheeignore | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .lycheeignore diff --git a/.lycheeignore b/.lycheeignore new file mode 100644 index 0000000..75a0f86 --- /dev/null +++ b/.lycheeignore @@ -0,0 +1,6 @@ +https://aka.ms/msal/estsr/guidance +xref:.+ +https://go.microsoft.com/fwlink/\?linkid=2083908 +https://endpoint.microsoft.com.+ +https://portal.azure.com.+ +https://account.microsoft.com.+ From bf444b7861de19c7fd5b635d6269eced6664306c Mon Sep 17 00:00:00 2001 From: VSC-Service-Account Date: Wed, 3 Jan 2024 19:46:54 +0000 Subject: [PATCH 10/10] CI Update Build.Reason:Manual by Den Delimarsky Build.Url:https://apidrop.visualstudio.com/Content%20CI/_build/results?buildId=405134&view=results --- python/docs-ref-autogen/toc.yml | 1 + xrefmap.yml | 204 ++++++++++++++++++++++++++++++++ 2 files changed, 205 insertions(+) diff --git a/python/docs-ref-autogen/toc.yml b/python/docs-ref-autogen/toc.yml index 144544c..4641cd3 100644 --- a/python/docs-ref-autogen/toc.yml +++ b/python/docs-ref-autogen/toc.yml @@ -34,3 +34,4 @@ - name: msal uid: msal name: msal + diff --git a/xrefmap.yml b/xrefmap.yml index 05d4f11..db7505e 100644 --- a/xrefmap.yml +++ b/xrefmap.yml @@ -1159,10 +1159,26 @@ references: href: https://docs.python.org/3/library/zoneinfo.html#zoneinfo.ZoneInfoNotFoundError name: ZoneInfoNotFoundError uid: zoneinfo.ZoneInfoNotFoundError +- fullName: BaseException.__cause__ + href: https://docs.python.org/3/library/exceptions.html#BaseException.__cause__ + name: __cause__ + uid: BaseException.__cause__ +- fullName: BaseException.__context__ + href: https://docs.python.org/3/library/exceptions.html#BaseException.__context__ + name: __context__ + uid: BaseException.__context__ - fullName: BaseException.__notes__ href: https://docs.python.org/3/library/exceptions.html#BaseException.__notes__ name: __notes__ uid: BaseException.__notes__ +- fullName: BaseException.__suppress_context__ + href: https://docs.python.org/3/library/exceptions.html#BaseException.__suppress_context__ + name: __suppress_context__ + uid: BaseException.__suppress_context__ +- fullName: BaseException.__traceback__ + href: https://docs.python.org/3/library/exceptions.html#BaseException.__traceback__ + name: __traceback__ + uid: BaseException.__traceback__ - fullName: BaseException.args href: https://docs.python.org/3/library/exceptions.html#BaseException.args name: args @@ -2359,6 +2375,54 @@ references: href: https://docs.python.org/3/library/ftplib.html#ftplib.FTP_TLS.ssl_version name: ssl_version uid: ftplib.FTP_TLS.ssl_version +- fullName: function.__annotations__ + href: https://docs.python.org/3/reference/datamodel.html#function.__annotations__ + name: __annotations__ + uid: function.__annotations__ +- fullName: function.__closure__ + href: https://docs.python.org/3/reference/datamodel.html#function.__closure__ + name: __closure__ + uid: function.__closure__ +- fullName: function.__code__ + href: https://docs.python.org/3/reference/datamodel.html#function.__code__ + name: __code__ + uid: function.__code__ +- fullName: function.__defaults__ + href: https://docs.python.org/3/reference/datamodel.html#function.__defaults__ + name: __defaults__ + uid: function.__defaults__ +- fullName: function.__dict__ + href: https://docs.python.org/3/reference/datamodel.html#function.__dict__ + name: __dict__ + uid: function.__dict__ +- fullName: function.__doc__ + href: https://docs.python.org/3/reference/datamodel.html#function.__doc__ + name: __doc__ + uid: function.__doc__ +- fullName: function.__globals__ + href: https://docs.python.org/3/reference/datamodel.html#function.__globals__ + name: __globals__ + uid: function.__globals__ +- fullName: function.__kwdefaults__ + href: https://docs.python.org/3/reference/datamodel.html#function.__kwdefaults__ + name: __kwdefaults__ + uid: function.__kwdefaults__ +- fullName: function.__module__ + href: https://docs.python.org/3/reference/datamodel.html#function.__module__ + name: __module__ + uid: function.__module__ +- fullName: function.__name__ + href: https://docs.python.org/3/reference/datamodel.html#function.__name__ + name: __name__ + uid: function.__name__ +- fullName: function.__qualname__ + href: https://docs.python.org/3/reference/datamodel.html#function.__qualname__ + name: __qualname__ + uid: function.__qualname__ +- fullName: function.__type_params__ + href: https://docs.python.org/3/reference/datamodel.html#function.__type_params__ + name: __type_params__ + uid: function.__type_params__ - fullName: functools.partial.args href: https://docs.python.org/3/library/functools.html#functools.partial.args name: args @@ -2575,14 +2639,46 @@ references: href: https://docs.python.org/3/library/http.cookies.html#http.cookies.Morsel.coded_value name: coded_value uid: http.cookies.Morsel.coded_value +- fullName: http.cookies.Morsel.comment + href: https://docs.python.org/3/library/http.cookies.html#http.cookies.Morsel.comment + name: comment + uid: http.cookies.Morsel.comment +- fullName: http.cookies.Morsel.domain + href: https://docs.python.org/3/library/http.cookies.html#http.cookies.Morsel.domain + name: domain + uid: http.cookies.Morsel.domain +- fullName: http.cookies.Morsel.expires + href: https://docs.python.org/3/library/http.cookies.html#http.cookies.Morsel.expires + name: expires + uid: http.cookies.Morsel.expires +- fullName: http.cookies.Morsel.httponly + href: https://docs.python.org/3/library/http.cookies.html#http.cookies.Morsel.httponly + name: httponly + uid: http.cookies.Morsel.httponly - fullName: http.cookies.Morsel.key href: https://docs.python.org/3/library/http.cookies.html#http.cookies.Morsel.key name: key uid: http.cookies.Morsel.key +- fullName: http.cookies.Morsel.path + href: https://docs.python.org/3/library/http.cookies.html#http.cookies.Morsel.path + name: path + uid: http.cookies.Morsel.path +- fullName: http.cookies.Morsel.samesite + href: https://docs.python.org/3/library/http.cookies.html#http.cookies.Morsel.samesite + name: samesite + uid: http.cookies.Morsel.samesite +- fullName: http.cookies.Morsel.secure + href: https://docs.python.org/3/library/http.cookies.html#http.cookies.Morsel.secure + name: secure + uid: http.cookies.Morsel.secure - fullName: http.cookies.Morsel.value href: https://docs.python.org/3/library/http.cookies.html#http.cookies.Morsel.value name: value uid: http.cookies.Morsel.value +- fullName: http.cookies.Morsel.version + href: https://docs.python.org/3/library/http.cookies.html#http.cookies.Morsel.version + name: version + uid: http.cookies.Morsel.version - fullName: http.server.BaseHTTPRequestHandler.MessageClass href: https://docs.python.org/3/library/http.server.html#http.server.BaseHTTPRequestHandler.MessageClass name: MessageClass @@ -3387,6 +3483,10 @@ references: href: https://docs.python.org/3/library/lzma.html#lzma.LZMADecompressor.unused_data name: unused_data uid: lzma.LZMADecompressor.unused_data +- fullName: mailbox.Maildir.colon + href: https://docs.python.org/3/library/mailbox.html#mailbox.Maildir.colon + name: colon + uid: mailbox.Maildir.colon - fullName: memoryview.c_contiguous href: https://docs.python.org/3/library/stdtypes.html#memoryview.c_contiguous name: c_contiguous @@ -4995,6 +5095,22 @@ references: href: https://docs.python.org/3/library/tkinter.scrolledtext.html#tkinter.scrolledtext.ScrolledText.vbar name: vbar uid: tkinter.scrolledtext.ScrolledText.vbar +- fullName: traceback.FrameSummary.filename + href: https://docs.python.org/3/library/traceback.html#traceback.FrameSummary.filename + name: filename + uid: traceback.FrameSummary.filename +- fullName: traceback.FrameSummary.line + href: https://docs.python.org/3/library/traceback.html#traceback.FrameSummary.line + name: line + uid: traceback.FrameSummary.line +- fullName: traceback.FrameSummary.lineno + href: https://docs.python.org/3/library/traceback.html#traceback.FrameSummary.lineno + name: lineno + uid: traceback.FrameSummary.lineno +- fullName: traceback.FrameSummary.name + href: https://docs.python.org/3/library/traceback.html#traceback.FrameSummary.name + name: name + uid: traceback.FrameSummary.name - fullName: traceback.TracebackException.__cause__ href: https://docs.python.org/3/library/traceback.html#traceback.TracebackException.__cause__ name: __cause__ @@ -6291,6 +6407,10 @@ references: href: https://docs.python.org/3/library/ast.html#ast.NodeVisitor.visit name: visit uid: ast.NodeVisitor.visit +- fullName: ast.NodeVisitor.visit_Constant + href: https://docs.python.org/3/library/ast.html#ast.NodeVisitor.visit_Constant + name: visit_Constant + uid: ast.NodeVisitor.visit_Constant - fullName: asyncio.AbstractChildWatcher.add_child_handler href: https://docs.python.org/3/library/asyncio-policy.html#asyncio.AbstractChildWatcher.add_child_handler name: add_child_handler @@ -7683,6 +7803,10 @@ references: href: https://docs.python.org/3/library/calendar.html#calendar.HTMLCalendar.formatmonth name: formatmonth uid: calendar.HTMLCalendar.formatmonth +- fullName: calendar.HTMLCalendar.formatmonthname + href: https://docs.python.org/3/library/calendar.html#calendar.HTMLCalendar.formatmonthname + name: formatmonthname + uid: calendar.HTMLCalendar.formatmonthname - fullName: calendar.HTMLCalendar.formatyear href: https://docs.python.org/3/library/calendar.html#calendar.HTMLCalendar.formatyear name: formatyear @@ -7779,6 +7903,10 @@ references: href: https://docs.python.org/3/library/cmd.html#cmd.Cmd.default name: default uid: cmd.Cmd.default +- fullName: cmd.Cmd.do_help + href: https://docs.python.org/3/library/cmd.html#cmd.Cmd.do_help + name: do_help + uid: cmd.Cmd.do_help - fullName: cmd.Cmd.emptyline href: https://docs.python.org/3/library/cmd.html#cmd.Cmd.emptyline name: emptyline @@ -14459,6 +14587,26 @@ references: href: https://docs.python.org/3/library/queue.html#queue.SimpleQueue.qsize name: qsize uid: queue.SimpleQueue.qsize +- fullName: random.Random.getrandbits + href: https://docs.python.org/3/library/random.html#random.Random.getrandbits + name: getrandbits + uid: random.Random.getrandbits +- fullName: random.Random.getstate + href: https://docs.python.org/3/library/random.html#random.Random.getstate + name: getstate + uid: random.Random.getstate +- fullName: random.Random.random + href: https://docs.python.org/3/library/random.html#random.Random.random + name: random + uid: random.Random.random +- fullName: random.Random.seed + href: https://docs.python.org/3/library/random.html#random.Random.seed + name: seed + uid: random.Random.seed +- fullName: random.Random.setstate + href: https://docs.python.org/3/library/random.html#random.Random.setstate + name: setstate + uid: random.Random.setstate - fullName: re.Match.__getitem__ href: https://docs.python.org/3/library/re.html#re.Match.__getitem__ name: __getitem__ @@ -15907,6 +16055,10 @@ references: href: https://docs.python.org/3/library/tarfile.html#tarfile.TarInfo.issym name: issym uid: tarfile.TarInfo.issym +- fullName: tarfile.TarInfo.replace + href: https://docs.python.org/3/library/tarfile.html#tarfile.TarInfo.replace + name: replace + uid: tarfile.TarInfo.replace - fullName: tarfile.TarInfo.tobuf href: https://docs.python.org/3/library/tarfile.html#tarfile.TarInfo.tobuf name: tobuf @@ -23547,22 +23699,70 @@ references: href: https://docs.python.org/3/library/tabnanny.html#tabnanny.verbose name: verbose uid: tabnanny.verbose +- fullName: tarfile.AREGTYPE + href: https://docs.python.org/3/library/tarfile.html#tarfile.AREGTYPE + name: AREGTYPE + uid: tarfile.AREGTYPE +- fullName: tarfile.BLKTYPE + href: https://docs.python.org/3/library/tarfile.html#tarfile.BLKTYPE + name: BLKTYPE + uid: tarfile.BLKTYPE +- fullName: tarfile.CHRTYPE + href: https://docs.python.org/3/library/tarfile.html#tarfile.CHRTYPE + name: CHRTYPE + uid: tarfile.CHRTYPE +- fullName: tarfile.CONTTYPE + href: https://docs.python.org/3/library/tarfile.html#tarfile.CONTTYPE + name: CONTTYPE + uid: tarfile.CONTTYPE - fullName: tarfile.DEFAULT_FORMAT href: https://docs.python.org/3/library/tarfile.html#tarfile.DEFAULT_FORMAT name: DEFAULT_FORMAT uid: tarfile.DEFAULT_FORMAT +- fullName: tarfile.DIRTYPE + href: https://docs.python.org/3/library/tarfile.html#tarfile.DIRTYPE + name: DIRTYPE + uid: tarfile.DIRTYPE - fullName: tarfile.ENCODING href: https://docs.python.org/3/library/tarfile.html#tarfile.ENCODING name: ENCODING uid: tarfile.ENCODING +- fullName: tarfile.FIFOTYPE + href: https://docs.python.org/3/library/tarfile.html#tarfile.FIFOTYPE + name: FIFOTYPE + uid: tarfile.FIFOTYPE +- fullName: tarfile.GNUTYPE_LONGLINK + href: https://docs.python.org/3/library/tarfile.html#tarfile.GNUTYPE_LONGLINK + name: GNUTYPE_LONGLINK + uid: tarfile.GNUTYPE_LONGLINK +- fullName: tarfile.GNUTYPE_LONGNAME + href: https://docs.python.org/3/library/tarfile.html#tarfile.GNUTYPE_LONGNAME + name: GNUTYPE_LONGNAME + uid: tarfile.GNUTYPE_LONGNAME +- fullName: tarfile.GNUTYPE_SPARSE + href: https://docs.python.org/3/library/tarfile.html#tarfile.GNUTYPE_SPARSE + name: GNUTYPE_SPARSE + uid: tarfile.GNUTYPE_SPARSE - fullName: tarfile.GNU_FORMAT href: https://docs.python.org/3/library/tarfile.html#tarfile.GNU_FORMAT name: GNU_FORMAT uid: tarfile.GNU_FORMAT +- fullName: tarfile.LNKTYPE + href: https://docs.python.org/3/library/tarfile.html#tarfile.LNKTYPE + name: LNKTYPE + uid: tarfile.LNKTYPE - fullName: tarfile.PAX_FORMAT href: https://docs.python.org/3/library/tarfile.html#tarfile.PAX_FORMAT name: PAX_FORMAT uid: tarfile.PAX_FORMAT +- fullName: tarfile.REGTYPE + href: https://docs.python.org/3/library/tarfile.html#tarfile.REGTYPE + name: REGTYPE + uid: tarfile.REGTYPE +- fullName: tarfile.SYMTYPE + href: https://docs.python.org/3/library/tarfile.html#tarfile.SYMTYPE + name: SYMTYPE + uid: tarfile.SYMTYPE - fullName: tarfile.USTAR_FORMAT href: https://docs.python.org/3/library/tarfile.html#tarfile.USTAR_FORMAT name: USTAR_FORMAT @@ -28475,6 +28675,10 @@ references: href: https://docs.python.org/3/library/reprlib.html#reprlib.Repr name: Repr uid: reprlib.Repr +- fullName: rlcompleter.Completer + href: https://docs.python.org/3/library/rlcompleter.html#rlcompleter.Completer + name: Completer + uid: rlcompleter.Completer - fullName: sched.scheduler href: https://docs.python.org/3/library/sched.html#sched.scheduler name: scheduler