summaryrefslogtreecommitdiff
path: root/docs/getting_started.rst
diff options
authorStefano Rivera <stefanor@debian.org>2026-06-24 08:51:28 -0400
committergit-ubuntu importer <ubuntu-devel-discuss@lists.ubuntu.com>2026-06-24 16:39:13 +0000
commitc92b951fa3a94dfeb2638362967c471cbc1df7fd (patch)
treea09909601665df24810334e4e40285cc08cccb64 /docs/getting_started.rst
parentbc7dfb102c282b8baa083df92edbb01eef619732 (diff)
Imported using git-ubuntu import.
Notes
Notes: * New upstream release.
Diffstat (limited to 'docs/getting_started.rst')
-rw-r--r--docs/getting_started.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/getting_started.rst b/docs/getting_started.rst
index 12056c5..21f6f7f 100644
--- a/docs/getting_started.rst
+++ b/docs/getting_started.rst
@@ -341,13 +341,13 @@ The following built-in types may be used as parameters or return values in
remote procedure calls:
* :class:`bool`
-* :func:`bytes` (:class:`str` on Python 2.x)
+* :class:`bytes` (:class:`str` on Python 2.x)
* :class:`dict`
* :class:`int`
-* :func:`list`
+* :class:`list`
* :class:`long`
-* :func:`tuple`
-* :func:`unicode` (:class:`str` on Python 3.x)
+* :class:`str` (:class:`unicode` on Python 2.x)
+* :class:`tuple`
User-defined types may not be used, except for: