Skip to content

Commit dffe09b

Browse files
committed
Futher edited down links and about.md
1 parent c9d96f4 commit dffe09b

File tree

2 files changed

+26
-44
lines changed

2 files changed

+26
-44
lines changed

concepts/basics/about.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -341,12 +341,10 @@ errors defaults to 'strict'.
341341
[method objects]: https://docs.python.org/3/c-api/method.html#method-objects
342342
[module]: https://docs.python.org/3/tutorial/modules.html
343343
[more on functions]: https://docs.python.org/3/tutorial/controlflow.html#more-on-defining-functions
344-
[naming and binding]: https://docs.python.org/3/reference/executionmodel.html#naming-and-binding
345344
[none]: https://docs.python.org/3/library/constants.html
346345
[object oriented programming]: https://en.wikipedia.org/wiki/Object-oriented_programming
347346
[objects]: https://docs.python.org/3/reference/datamodel.html#the-standard-type-hierarchy
348347
[parameters]: https://docs.python.org/3/glossary.html#term-parameter
349-
[pep8]: https://www.python.org/dev/peps/pep-0008/
350348
[peps]: https://www.python.org/dev/peps/
351349
[psf membership]: https://www.python.org/psf/membership/
352350
[psf]: https://www.python.org/psf/

concepts/basics/links.json

Lines changed: 26 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -3,77 +3,61 @@
33
"url": "https://docs.python.org/3/",
44
"description": "Python documentation"
55
},
6-
{
7-
"url": "https://www.python.org/dev/peps/pep-0020/",
8-
"description": "The Zen of Python (PEP 20)"
9-
},
106
{
117
"url": "https://www.python.org/dev/peps/pep-0008/",
128
"description": "PEP 8"
139
},
1410
{
15-
"url": "https://www.python.org/psf-landing/",
16-
"description": "Python Software Foundation"
17-
},
18-
{
19-
"url": "https://www.python.org/dev/peps/",
20-
"description": "Python Enhancement Proposals or PEPs"
21-
},
22-
{
23-
"url": "https://docs.python.org/3/reference/datamodel.html",
24-
"description": "everything in Python is an object"
25-
},
26-
{
27-
"url": "https://stackoverflow.com/questions/11328920/is-python-strongly-typed",
28-
"description": "dynamic typing and strong typing"
29-
},
30-
{
31-
"url": "https://docs.python.org/3/library/typing.html",
32-
"description": "type hints"
11+
"url": "https://www.python.org/dev/peps/pep-0020/",
12+
"description": "The Zen of Python (PEP 20)"
3313
},
3414
{
35-
"url": "https://docs.python.org/3/reference/lexical_analysis.html#indentation",
36-
"description": "significant indentation"
15+
"url": "https://nedbatchelder.com/text/names.html",
16+
"description": "Ned Batchelder: Facts and Myths about Python Names."
3717
},
3818
{
3919
"url": "https://realpython.com/python-variables/",
4020
"description": "variables in Python"
4121
},
42-
{
43-
"url": "https://docs.python.org/3/reference/executionmodel.html#naming-and-binding",
44-
"description": "naming and binding in Python"
45-
},
4622
{
4723
"url": "https://docs.python.org/3/tutorial/controlflow.html#defining-functions",
4824
"description": "function definition"
4925
},
5026
{
51-
"url": "https://docs.python.org/3/reference/compound_stmts.html#function",
52-
"description": "functions in Python"
27+
"url": "https://docs.python.org/3/tutorial/controlflow.html#default-argument-values",
28+
"description": "default arguments"
5329
},
5430
{
55-
"url": "https://docs.python.org/3/reference/datamodel.html#classes",
56-
"description": "class in Python"
31+
"url": "https://realpython.com/python-comments-guide/#python-commenting-basics",
32+
"description": "Comments"
5733
},
5834
{
59-
"url": "https://docs.python.org/3/c-api/method.html#method-objects",
60-
"description": "methods in Python"
35+
"url": "https://docs.python.org/3/tutorial/controlflow.html#tut-docstrings",
36+
"description": "docstring"
6137
},
6238
{
63-
"url": "https://docs.python.org/3/reference/datamodel.html#the-standard-type-hierarchy",
64-
"description": "Pythons standard type hierarchy"
39+
"url": "https://www.python.org/psf-landing/",
40+
"description": "Python Software Foundation"
6541
},
6642
{
67-
"url": "https://docs.python.org/3/tutorial/controlflow.html#default-argument-values",
68-
"description": "default arguments"
43+
"url": "https://www.python.org/dev/peps/",
44+
"description": "Python Enhancement Proposals or PEPs"
6945
},
7046
{
71-
"url": "https://realpython.com/python-comments-guide/#python-commenting-basics",
72-
"description": "Comments"
47+
"url": "https://docs.python.org/3/reference/datamodel.html",
48+
"description": "everything in Python is an object"
7349
},
7450
{
75-
"url": "https://docs.python.org/3/tutorial/controlflow.html#tut-docstrings",
76-
"description": "docstring"
51+
"url": "https://stackoverflow.com/questions/11328920/is-python-strongly-typed",
52+
"description": "dynamic typing and strong typing"
53+
},
54+
{
55+
"url": "https://docs.python.org/3/library/typing.html",
56+
"description": "type hints"
57+
},
58+
{
59+
"url": "https://docs.python.org/3/reference/lexical_analysis.html#indentation",
60+
"description": "significant indentation"
7761
},
7862
{
7963
"url": "https://docs.python.org/3/library/doctest.html",

0 commit comments

Comments
 (0)