Skip to content

Commit 9d4e064

Browse files
committed
new python language resource and update to changelog
1 parent 6e4298f commit 9d4e064

File tree

6 files changed

+24
-1
lines changed

6 files changed

+24
-1
lines changed

all.html

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1201,6 +1201,12 @@ <h2>General Python programming language resources</h2>
12011201
through the Python standard library.</p>
12021202
</li>
12031203
<li>
1204+
<p><a href="http://halitalptekin.tumblr.com/post/30028271874/pythonic-syntax">What the heck does "pythonic" mean?</a>
1205+
explains the difference in accepted Python coding style compared to other
1206+
ways to write Python code that, while syntactically correct, are less
1207+
maintainable and therefore should not be used.</p>
1208+
</li>
1209+
<li>
12041210
<p><a href="http://satyajit.ranjeev.in/2012/05/17/python-a-few-things-to-remember.html">A few things to remember while coding in Python</a>
12051211
is a nice collection of good practices to use while building programs
12061212
with the language. </p>
@@ -7558,6 +7564,8 @@ <h1>Change Log</h1>
75587564
<h2>2015</h2>
75597565
<h3>December</h3>
75607566
<ul>
7567+
<li>New resources and a new basic page on the
7568+
<a href="/python-programming-language.html">Python programming language itself</a>.</li>
75617569
<li>Added new starter projects to the <a href="/flask.html">Flask</a> page.</li>
75627570
</ul>
75637571
<h3>November</h3>

change-log.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,8 @@ <h1>Change Log</h1>
3939
<h2>2015</h2>
4040
<h3>December</h3>
4141
<ul>
42+
<li>New resources and a new basic page on the
43+
<a href="/python-programming-language.html">Python programming language itself</a>.</li>
4244
<li>Added new starter projects to the <a href="/flask.html">Flask</a> page.</li>
4345
</ul>
4446
<h3>November</h3>

feeds/all.atom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<feed xmlns="http://www.w3.org/2005/Atom"><title>Matt Makai</title><link href="http://www.fullstackpython.com/" rel="alternate"></link><link href="http://www.fullstackpython.com/feeds/all.atom.xml" rel="self"></link><id>http://www.fullstackpython.com/</id><updated>2015-12-01T08:43:24Z</updated></feed>
2+
<feed xmlns="http://www.w3.org/2005/Atom"><title>Matt Makai</title><link href="http://www.fullstackpython.com/" rel="alternate"></link><link href="http://www.fullstackpython.com/feeds/all.atom.xml" rel="self"></link><id>http://www.fullstackpython.com/</id><updated>2015-12-02T08:26:50Z</updated></feed>

python-programming-language.html

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,12 @@ <h2>General Python programming language resources</h2>
5454
through the Python standard library.</p>
5555
</li>
5656
<li>
57+
<p><a href="http://halitalptekin.tumblr.com/post/30028271874/pythonic-syntax">What the heck does "pythonic" mean?</a>
58+
explains the difference in accepted Python coding style compared to other
59+
ways to write Python code that, while syntactically correct, are less
60+
maintainable and therefore should not be used.</p>
61+
</li>
62+
<li>
5763
<p><a href="http://satyajit.ranjeev.in/2012/05/17/python-a-few-things-to-remember.html">A few things to remember while coding in Python</a>
5864
is a nice collection of good practices to use while building programs
5965
with the language. </p>

source/content/pages/03-programming-language/01-programming-language.markdown

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,11 @@ tested was not written in Python.
2828
* [Python Module of the Week](http://pymotw.com/2/index.html) is a tour
2929
through the Python standard library.
3030

31+
* [What the heck does "pythonic" mean?](http://halitalptekin.tumblr.com/post/30028271874/pythonic-syntax)
32+
explains the difference in accepted Python coding style compared to other
33+
ways to write Python code that, while syntactically correct, are less
34+
maintainable and therefore should not be used.
35+
3136
* [A few things to remember while coding in Python](http://satyajit.ranjeev.in/2012/05/17/python-a-few-things-to-remember.html)
3237
is a nice collection of good practices to use while building programs
3338
with the language.

source/content/pages/13-meta/02-change-log.markdown

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ the
1414

1515
## 2015
1616
### December
17+
* New resources and a new basic page on the
18+
[Python programming language itself](/python-programming-language.html).
1719
* Added new starter projects to the [Flask](/flask.html) page.
1820

1921
### November

0 commit comments

Comments
 (0)