summaryrefslogtreecommitdiffstats
path: root/Doc/faq
diff options
context:
space:
mode:
authorMartin Panter <vadmium>2015-09-07 01:40:33 (GMT)
committerMartin Panter <vadmium>2015-09-07 01:40:33 (GMT)
commit0ed1bcdff891876e18e311911c724fc0bbce673c (patch)
tree38f63d2e05d128dd74c54b479e71cd099601b09e /Doc/faq
parentb75a0e9f32c47cc75924c79f7ac74e2f11f32506 (diff)
downloadcpython-0ed1bcdff891876e18e311911c724fc0bbce673c.zip
cpython-0ed1bcdff891876e18e311911c724fc0bbce673c.tar.gz
cpython-0ed1bcdff891876e18e311911c724fc0bbce673c.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.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Doc/faq/programming.rst b/Doc/faq/programming.rst
index 23891be..135ae52 100644
--- a/Doc/faq/programming.rst
+++ b/Doc/faq/programming.rst
@@ -1280,6 +1280,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?
----------------------------------------