summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorPablo Galindo <pablogsal@gmail.com>2023-06-06 22:29:37 (GMT)
committerPablo Galindo <pablogsal@gmail.com>2023-06-06 22:30:33 (GMT)
commitb4e48a444ea02921ce4b701fe165e6cfd4cf5845 (patch)
tree310c6c0a86e5769e0e34582be2554ab1215f2e76 /Lib
parentb7fd286c3bc4ee6f2685605b9039098c42514da8 (diff)
downloadcpython-b4e48a444ea02921ce4b701fe165e6cfd4cf5845.zip
cpython-b4e48a444ea02921ce4b701fe165e6cfd4cf5845.tar.gz
cpython-b4e48a444ea02921ce4b701fe165e6cfd4cf5845.tar.bz2
Python 3.10.12v3.10.12
Diffstat (limited to 'Lib')
-rw-r--r--Lib/pydoc_data/topics.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/Lib/pydoc_data/topics.py b/Lib/pydoc_data/topics.py
index 1637f38..51af893 100644
--- a/Lib/pydoc_data/topics.py
+++ b/Lib/pydoc_data/topics.py
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
-# Autogenerated by Sphinx on Tue Apr 4 22:56:51 2023
+# Autogenerated by Sphinx on Tue Jun 6 23:30:19 2023
topics = {'assert': 'The "assert" statement\n'
'**********************\n'
'\n'
@@ -11729,7 +11729,7 @@ topics = {'assert': 'The "assert" statement\n'
'followed by\n'
' the string itself.\n'
'\n'
- 'str.rsplit(sep=None, maxsplit=-1)\n'
+ 'str.rsplit(sep=None, maxsplit=- 1)\n'
'\n'
' Return a list of the words in the string, using *sep* '
'as the\n'
@@ -11770,7 +11770,7 @@ topics = {'assert': 'The "assert" statement\n'
" >>> 'Monty Python'.removesuffix(' Python')\n"
" 'Monty'\n"
'\n'
- 'str.split(sep=None, maxsplit=-1)\n'
+ 'str.split(sep=None, maxsplit=- 1)\n'
'\n'
' Return a list of the words in the string, using *sep* '
'as the\n'
@@ -12802,7 +12802,7 @@ topics = {'assert': 'The "assert" statement\n'
' points. All the code points in the range "U+0000 - '
'U+10FFFF"\n'
' can be represented in a string. Python doesn’t have a '
- 'char\n'
+ '"char"\n'
' type; instead, every code point in the string is '
'represented\n'
' as a string object with length "1". The built-in '