index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Doc
/
tutorial
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-47189: What's New in 3.11: Faster CPython (GH-32235)
Ken Jin
2022-04-06
1
-0/+2
*
Follow PEP-8 guidelines in tutorial for standard library (GH-26127)
Bob Kline
2022-04-03
1
-2/+3
*
bpo-31582: Created a new documentation section describing sys.path initializa...
Russel Webber
2022-03-23
1
-0/+2
*
docs: Don't use code formatting for emphasis (GH-30519)
William Andrea
2022-03-08
1
-1/+1
*
docs: Link `match` statement in tutorial (GH-31396)
William Andrea
2022-02-18
1
-1/+1
*
[doc] Enhance readability by avoiding big blocks for small numbers. (GH-31157)
Julien Palard
2022-02-06
1
-9/+3
*
bpo-46328: Add sys.exception() (GH-30514)
Irit Katriel
2022-01-13
1
-1/+1
*
bpo-46270: Describe the `in` and `not in` operators as membership tests. (GH-...
Raymond Hettinger
2022-01-10
1
-4/+6
*
bpo-45292: [PEP-654] exception groups and except* documentation (GH-30158)
Irit Katriel
2022-01-06
1
-0/+89
*
bpo-34538: Remove Exception subclassing from tutorial (GH-30361)
Hugo van Kemenade
2022-01-03
1
-35/+1
*
bpo-46079: Replace external link that is down for maintenance. (GH-30315)
Raymond Hettinger
2022-01-01
1
-6/+6
*
Fix the output of built-in iter() function example in Iterators (Section 9.8)...
Vivek Vashist
2021-12-16
1
-1/+1
*
bpo-46059: Clarify pattern-matching example in "control flow" docs (GH-30079)
Alex Waygood
2021-12-14
1
-3/+5
*
bpo-45916: Use HTTPS link for The Perils of Floating Point (GH-29896)
Zachary Ware
2021-12-02
1
-1/+1
*
Closes bpo-45712: Add missing word in control flow tutorial (GH-29460)
180909
2021-11-08
1
-1/+1
*
bpo-34451: Document prompt and output toggle feature in html tutorial (GH-27105)
Thomas
2021-10-21
1
-0/+7
*
bpo-45442: Add deactivate step to venv tutorial. (GH-28981)
srinivasan
2021-10-15
1
-0/+5
*
bpo-38623: Add note about site module (site-packages) (GH-16974)
Peter Bittner
2021-09-23
1
-1/+2
*
bpo-41203: Replace Mac OS X and OS X with macOS (GH-28515)
Serhiy Storchaka
2021-09-22
1
-1/+1
*
bpo-39452: Rewrite and expand __main__.rst (#26883)
Jack DeVries
2021-08-24
1
-0/+2
*
bpo-44966: Fix out-of-date traceback message (GH-27867)
Raymond Hettinger
2021-08-21
1
-1/+1
*
introduce omitted index default before using it (GH-27775)
Jefferson Oliveira
2021-08-17
1
-8/+8
*
bpo-44907: Update error messages in tutorial examples (GH-27755)
meowmeowmeowcat
2021-08-13
1
-3/+3
*
bpo-41576: document BaseException in favor of bare except (GH-21917)
Thomas Grainger
2021-08-06
1
-8/+9
*
bpo-44740: Lowercase "internet" and "web" where appropriate. (#27378)
Mariusz Felisiak
2021-07-26
3
-4/+4
*
bpo-40620: Clarify tutorial controlflow.rst ``range`` examples (GH-26919)
jdevries3133
2021-06-27
1
-14/+8
*
bpo-43927: Change 'IOError' to 'OSError' (GH-26289)
Terry Jan Reedy
2021-05-21
1
-1/+1
*
bpo-35765: Clarify references to "object x" in the JSON tutorial (GH-22411)
Zackery Spytz
2021-05-18
1
-1/+2
*
bpo-43729: Clarify comment in tutorial example (GH-25191)
Erlend Egeberg Aasland
2021-05-14
1
-1/+1
*
bpo-40640: doc -- add missing ... in example of Continue (#26055)
Irit Katriel
2021-05-12
1
-0/+1
*
bpo-32822: Add finally with return/break/continue to the tutorial (#25600)
Roberto Hueso
2021-05-04
1
-0/+4
*
Python 3.11.0a0
Pablo Galindo
2021-05-03
3
-8/+8
*
bpo-42589: Change URL for 'from' link when used in a raised exception (GH-23872)
sblondon
2021-04-29
1
-1/+1
*
bpo-43777: Drop description of "pip search" command from tutorial (GH-25287)
Bob Kline
2021-04-14
1
-13/+2
*
bpo-43325: Add FAQ entry for identity tests (GH-25168)
Raymond Hettinger
2021-04-04
1
-3/+2
*
bpo-39231: correct tutorial annotations section (GH-25029)
Irit Katriel
2021-03-27
1
-1/+1
*
bpo-43319: Fixed the tutorial on venv about standard library (GH-24740)
cmhzc
2021-03-07
1
-1/+1
*
bpo-42128: Add documentation for pattern matching (PEP 634) (#24664)
Daniel F Moisset
2021-03-01
1
-0/+169
*
bpo-43042: Augment tutorial sentence (GH-24514)
Terry Jan Reedy
2021-02-20
1
-1/+2
*
Doc: errors tutorial improvements (GH-16269)
Adorilson Bezerra
2021-01-31
1
-21/+21
*
bpo-42179: Clarify exception chaining (GH-23160)
Vladimir
2020-12-16
1
-4/+4
*
bpo-42489: Fix the signature for list.sort() in the tutorial (GH-23538)
Zackery Spytz
2020-11-28
1
-1/+1
*
bpo-17852: Doc: Fix the tutorial about closing files (GH-23135)
Volker-Weissmann
2020-11-27
1
-5/+10
*
bpo-42179: Doc/tutorial: Remove mention of __cause__ (GH-23162)
Inada Naoki
2020-11-06
1
-9/+10
*
[doc] Update references to NumPy (GH-22458)
Andre Delfino
2020-10-01
1
-1/+1
*
Revert "Fix all Python Cookbook links (#22205)" (GH-22424)
Andre Delfino
2020-09-27
1
-1/+1
*
Fix all Python Cookbook links (#22205)
Andre Delfino
2020-09-15
1
-1/+1
*
bpo-41776: Revise example of "continue" in the tutorial documentation (GH-22234)
Neeraj Samtani
2020-09-15
1
-5/+5
*
Fix grammar in Doc/tutorial/controlflow.rst (GH-21885)
Denis Ovsienko
2020-08-19
1
-1/+1
*
bpo-40204: Fix reference to terms in the doc (GH-21865)
Victor Stinner
2020-08-14
1
-1/+1
[next]