File: snippets.patch

package info (click to toggle)
pycode-browser 20120614%2Bgit%2Bb041dd2-7
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 6,236 kB
  • ctags: 1,194
  • sloc: python: 2,220; xml: 152; makefile: 39
file content (32 lines) | stat: -rw-r--r-- 734 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
--- a/Code/Maths/mathsin2.py
+++ b/Code/Maths/mathsin2.py
@@ -1,4 +1,4 @@
-Example math2.py
+#Example math2.py
 
 import math as m   # Give another madule name
 print m.sin(0.5)   # Refer by the new name
--- a/Code/Maths/plot2.py
+++ b/Code/Maths/plot2.py
@@ -1,4 +1,4 @@
-Example plot2.py
+#Example plot2.py
 
 from pylab import *
 x = [1,2,5]
--- a/Code/PythonBook/chap2/mathsin2.py
+++ b/Code/PythonBook/chap2/mathsin2.py
@@ -1,4 +1,4 @@
-Example math2.py
+#Example math2.py
 
 import math as m   # Give another madule name
 print m.sin(0.5)   # Refer by the new name
--- a/Code/PythonBook/chap4/plot2.py
+++ b/Code/PythonBook/chap4/plot2.py
@@ -1,4 +1,4 @@
-Example plot2.py
+#Example plot2.py
 
 from pylab import *
 x = [1,2,5]