diff options
author | Martin Panter <vadmium> | 2015-09-07 02:08:55 (GMT) |
---|---|---|
committer | Martin Panter <vadmium> | 2015-09-07 02:08:55 (GMT) |
commit | 7f02d6d0d946a724ea1f4f1ffb6680c881dbad33 (patch) | |
tree | f791bb323ebdc4b9ae4ab4461a4a1e72ce2bd618 /Doc/faq | |
parent | 6f2bb98966853edcf1855b9dd310529d071241a2 (diff) | |
download | cpython-7f02d6d0d946a724ea1f4f1ffb6680c881dbad33.zip cpython-7f02d6d0d946a724ea1f4f1ffb6680c881dbad33.tar.gz cpython-7f02d6d0d946a724ea1f4f1ffb6680c881dbad33.tar.bz2 |
Issue #23406: Clarify documentation on multiplying a sequence
Patch from Matheus Vieira Portela.
Diffstat (limited to 'Doc/faq')
-rw-r--r-- | Doc/faq/programming.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Doc/faq/programming.rst b/Doc/faq/programming.rst index 2d3cb1c..67a9c56 100644 --- a/Doc/faq/programming.rst +++ b/Doc/faq/programming.rst @@ -1164,6 +1164,8 @@ analogue of lisp car is ``lisp_list[0]`` and the analogue of cdr is usually a lot slower than using Python lists. +.. _faq-multidimensional-list: + How do I create a multidimensional list? ---------------------------------------- |