From | To | Expression |
---|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
tags: | |
- book | |
--- | |
# {{ book.short_title }} | |
| | | | |
| - | - | | |
| **Full title** | (title:: {{ book.full_title }}) | | |
| **Authors** | {{ book.formatted_authors}} | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
tags: | |
- book | |
--- | |
# {{ short_title }} | |
| | | | |
| - | - | | |
| **Full title** | (title:: {{ full_title }}) | | |
| **Authors** | {{ formatted_authors}} | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
>>> class Works(object): | |
... a = 1 | |
... b = [a + x for x in range(10)] | |
>>> Works.a | |
0: 1 | |
>>> Works.b | |
1: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10] | |
>>> class DoesntWork(object): | |
... a = 1 | |
... b = (a + x for x in range(10)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def withenv(name): | |
def inenv(func): | |
def new_func(*args, **kwargs): | |
print 'withenv {}'.format(name) | |
func(*args, **kwargs) | |
return new_func | |
return inenv | |
def withenv_byname(func): | |
def new_func(self, *args, **kwargs): |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""TODO: A docstring""" | |
class Bean(type): | |
def __init__(cls, name, bases, dct): | |
def init(self, *args, **kwargs): | |
for attr, arg in zip(cls._attrs, args): | |
setattr(self, attr, arg) | |
for name, value in kwargs.iteritems(): | |
setattr(self, name, value) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def singleton(cls): | |
instances = {} | |
def getinstance(): | |
if cls not in instances: | |
instances[cls] = cls() | |
return instances[cls] | |
return getinstance |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
>>> result = [] | |
... for x in seq: | |
... if len(seq) > 1: | |
... for y in x: | |
... if y != 'e': | |
... result.append(y) | |
... result | |
['a', 'b', 'c', 'd', 'f', 'g', 'h', 'i'] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
>>> seq = ['abc', 'def', 'g', 'hi'] | |
... [y for x in seq if len(seq) > 1 for y in x if y != 'e'] | |
['a', 'b', 'c', 'd', 'f', 'g', 'h', 'i'] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
>>> result = [] | |
... for x in seq_x: | |
... for y in seq_y: | |
... result.append((x,y)) | |
>>> result | |
2: [(1, 'a'), | |
(1, 'b'), | |
(1, 'c'), | |
(2, 'a'), | |
(2, 'b'), |
NewerOlder