Skip to content

Commit b1a1d37

Browse files
committed
Enum
1 parent 171be8c commit b1a1d37

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1327,7 +1327,7 @@ from functools import partial
13271327
LogicOp = Enum('LogicOp', {'AND': partial(lambda l, r: l and r),
13281328
'OR' : partial(lambda l, r: l or r)})
13291329
```
1330-
* **Another solution in this particular case, is to use `'and_'` and `'or_'` functions from module [Operator](#operator).**
1330+
* **Another solution in this particular case, is to use `'and_'` and `'or_'` functions from module [operator](#operator).**
13311331

13321332

13331333
Exceptions

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1246,7 +1246,7 @@
12461246
</code></pre></div>
12471247

12481248
<ul>
1249-
<li><strong>Another solution in this particular case, is to use <code class="python hljs"><span class="hljs-string">'and_'</span></code> and <code class="python hljs"><span class="hljs-string">'or_'</span></code> functions from module <a href="#operator">Operator</a>.</strong></li>
1249+
<li><strong>Another solution in this particular case, is to use <code class="python hljs"><span class="hljs-string">'and_'</span></code> and <code class="python hljs"><span class="hljs-string">'or_'</span></code> functions from module <a href="#operator">operator</a>.</strong></li>
12501250
</ul>
12511251
<div><h2 id="exceptions"><a href="#exceptions" name="exceptions">#</a>Exceptions</h2><div><h3 id="basicexample">Basic Example</h3><pre><code class="python language-python hljs"><span class="hljs-keyword">try</span>:
12521252
&lt;code&gt;

0 commit comments

Comments
 (0)