]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-99032: datetime docs: Encoding is no longer relevant (#93365)
authorWilliam Andrea <william.j.andrea@gmail.com>
Mon, 24 Apr 2023 18:54:16 +0000 (14:54 -0400)
committerGitHub <noreply@github.com>
Mon, 24 Apr 2023 18:54:16 +0000 (12:54 -0600)
This removes a section of the `strftime` and `strptime` documentation that refers to a bygone era when `strftime` would return an encoded byte string.

---------

Co-authored-by: Paul Ganssle <1377457+pganssle@users.noreply.github.com>
Doc/library/datetime.rst

index ab8fed691e86c12f1d1417ece586c23f88a1975f..7889dd7d1c3ef0b3127317ad739349a56eb0051f 100644 (file)
@@ -2510,10 +2510,7 @@ Notes:
    Because the format depends on the current locale, care should be taken when
    making assumptions about the output value. Field orderings will vary (for
    example, "month/day/year" versus "day/month/year"), and the output may
-   contain Unicode characters encoded using the locale's default encoding (for
-   example, if the current locale is ``ja_JP``, the default encoding could be
-   any one of ``eucJP``, ``SJIS``, or ``utf-8``; use :meth:`locale.getlocale`
-   to determine the current locale's encoding).
+   contain non-ASCII characters.
 
 (2)
    The :meth:`strptime` method can parse years in the full [1, 9999] range, but