forked from jdf/processing-py-site
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathNone.xml
More file actions
51 lines (31 loc) · 738 Bytes
/
None.xml
File metadata and controls
51 lines (31 loc) · 738 Bytes
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<root>
<name>None</name>
<category>Structure</category>
<subcategory></subcategory>
<usage></usage>
<example>
<image />
<code><![CDATA[
print True == None # Prints False
print False == None # Prints False
print None == None # Prints True
]]></code>
</example>
<description><![CDATA[ None is often used to represent the absences of a value. Such as
when default arguments are not passed to a function.
]]></description>
<syntax>
x = None
</syntax>
<parameter>
<label></label>
<description></description>
</parameter>
<returns></returns>
<availability>1.0</availability>
<type></type>
<partof></partof>
<related>True</related>
<related>False</related>
</root>