partition
stringclasses
3 values
func_name
stringlengths
1
134
docstring
stringlengths
1
46.9k
path
stringlengths
4
223
original_string
stringlengths
75
104k
code
stringlengths
75
104k
docstring_tokens
listlengths
1
1.97k
repo
stringlengths
7
55
language
stringclasses
1 value
url
stringlengths
87
315
code_tokens
listlengths
19
28.4k
sha
stringlengths
40
40
valid
ChangesetDAG.path
Return nodes in the path between 'a' and 'b' going from parent to child NOT including 'a'
lrcloud/__main__.py
def path(self, a_hash, b_hash): """Return nodes in the path between 'a' and 'b' going from parent to child NOT including 'a' """ def _path(a, b): if a is b: return [a] else: assert len(a.children) == 1 return [a] + _path(a....
def path(self, a_hash, b_hash): """Return nodes in the path between 'a' and 'b' going from parent to child NOT including 'a' """ def _path(a, b): if a is b: return [a] else: assert len(a.children) == 1 return [a] + _path(a....
[ "Return", "nodes", "in", "the", "path", "between", "a", "and", "b", "going", "from", "parent", "to", "child", "NOT", "including", "a" ]
madsbk/lrcloud
python
https://github.com/madsbk/lrcloud/blob/8d99be3e1abdf941642e9a1c86b7d775dc373c0b/lrcloud/__main__.py#L150-L163
[ "def", "path", "(", "self", ",", "a_hash", ",", "b_hash", ")", ":", "def", "_path", "(", "a", ",", "b", ")", ":", "if", "a", "is", "b", ":", "return", "[", "a", "]", "else", ":", "assert", "len", "(", "a", ".", "children", ")", "==", "1", "...
8d99be3e1abdf941642e9a1c86b7d775dc373c0b
valid
_rindex
Index of the last occurrence of x in the sequence.
hedgehog/protocol/zmq/__init__.py
def _rindex(mylist: Sequence[T], x: T) -> int: """Index of the last occurrence of x in the sequence.""" return len(mylist) - mylist[::-1].index(x) - 1
def _rindex(mylist: Sequence[T], x: T) -> int: """Index of the last occurrence of x in the sequence.""" return len(mylist) - mylist[::-1].index(x) - 1
[ "Index", "of", "the", "last", "occurrence", "of", "x", "in", "the", "sequence", "." ]
PRIArobotics/HedgehogProtocol
python
https://github.com/PRIArobotics/HedgehogProtocol/blob/140df1ade46fbfee7eea7a6c0b35cbc7ffbf89fe/hedgehog/protocol/zmq/__init__.py#L17-L19
[ "def", "_rindex", "(", "mylist", ":", "Sequence", "[", "T", "]", ",", "x", ":", "T", ")", "->", "int", ":", "return", "len", "(", "mylist", ")", "-", "mylist", "[", ":", ":", "-", "1", "]", ".", "index", "(", "x", ")", "-", "1" ]
140df1ade46fbfee7eea7a6c0b35cbc7ffbf89fe
valid
raw_to_delimited
\ Returns a message consisting of header frames, delimiter frame, and payload frames. The payload frames may be given as sequences of bytes (raw) or as `Message`s.
hedgehog/protocol/zmq/__init__.py
def raw_to_delimited(header: Header, raw_payload: RawPayload) -> DelimitedMsg: """\ Returns a message consisting of header frames, delimiter frame, and payload frames. The payload frames may be given as sequences of bytes (raw) or as `Message`s. """ return tuple(header) + (b'',) + tuple(raw_payload)
def raw_to_delimited(header: Header, raw_payload: RawPayload) -> DelimitedMsg: """\ Returns a message consisting of header frames, delimiter frame, and payload frames. The payload frames may be given as sequences of bytes (raw) or as `Message`s. """ return tuple(header) + (b'',) + tuple(raw_payload)
[ "\\", "Returns", "a", "message", "consisting", "of", "header", "frames", "delimiter", "frame", "and", "payload", "frames", ".", "The", "payload", "frames", "may", "be", "given", "as", "sequences", "of", "bytes", "(", "raw", ")", "or", "as", "Message", "s",...
PRIArobotics/HedgehogProtocol
python
https://github.com/PRIArobotics/HedgehogProtocol/blob/140df1ade46fbfee7eea7a6c0b35cbc7ffbf89fe/hedgehog/protocol/zmq/__init__.py#L22-L27
[ "def", "raw_to_delimited", "(", "header", ":", "Header", ",", "raw_payload", ":", "RawPayload", ")", "->", "DelimitedMsg", ":", "return", "tuple", "(", "header", ")", "+", "(", "b''", ",", ")", "+", "tuple", "(", "raw_payload", ")" ]
140df1ade46fbfee7eea7a6c0b35cbc7ffbf89fe
valid
to_delimited
\ Returns a message consisting of header frames, delimiter frame, and payload frames. The payload frames may be given as sequences of bytes (raw) or as `Message`s.
hedgehog/protocol/zmq/__init__.py
def to_delimited(header: Header, payload: Payload, side: CommSide) -> DelimitedMsg: """\ Returns a message consisting of header frames, delimiter frame, and payload frames. The payload frames may be given as sequences of bytes (raw) or as `Message`s. """ return raw_to_delimited(header, [side.seriali...
def to_delimited(header: Header, payload: Payload, side: CommSide) -> DelimitedMsg: """\ Returns a message consisting of header frames, delimiter frame, and payload frames. The payload frames may be given as sequences of bytes (raw) or as `Message`s. """ return raw_to_delimited(header, [side.seriali...
[ "\\", "Returns", "a", "message", "consisting", "of", "header", "frames", "delimiter", "frame", "and", "payload", "frames", ".", "The", "payload", "frames", "may", "be", "given", "as", "sequences", "of", "bytes", "(", "raw", ")", "or", "as", "Message", "s",...
PRIArobotics/HedgehogProtocol
python
https://github.com/PRIArobotics/HedgehogProtocol/blob/140df1ade46fbfee7eea7a6c0b35cbc7ffbf89fe/hedgehog/protocol/zmq/__init__.py#L30-L35
[ "def", "to_delimited", "(", "header", ":", "Header", ",", "payload", ":", "Payload", ",", "side", ":", "CommSide", ")", "->", "DelimitedMsg", ":", "return", "raw_to_delimited", "(", "header", ",", "[", "side", ".", "serialize", "(", "msg", ")", "for", "m...
140df1ade46fbfee7eea7a6c0b35cbc7ffbf89fe
valid
raw_from_delimited
\ From a message consisting of header frames, delimiter frame, and payload frames, return a tuple `(header, payload)`. The payload frames may be returned as sequences of bytes (raw) or as `Message`s.
hedgehog/protocol/zmq/__init__.py
def raw_from_delimited(msgs: DelimitedMsg) -> RawMsgs: """\ From a message consisting of header frames, delimiter frame, and payload frames, return a tuple `(header, payload)`. The payload frames may be returned as sequences of bytes (raw) or as `Message`s. """ delim = _rindex(msgs, b'') return ...
def raw_from_delimited(msgs: DelimitedMsg) -> RawMsgs: """\ From a message consisting of header frames, delimiter frame, and payload frames, return a tuple `(header, payload)`. The payload frames may be returned as sequences of bytes (raw) or as `Message`s. """ delim = _rindex(msgs, b'') return ...
[ "\\", "From", "a", "message", "consisting", "of", "header", "frames", "delimiter", "frame", "and", "payload", "frames", "return", "a", "tuple", "(", "header", "payload", ")", ".", "The", "payload", "frames", "may", "be", "returned", "as", "sequences", "of", ...
PRIArobotics/HedgehogProtocol
python
https://github.com/PRIArobotics/HedgehogProtocol/blob/140df1ade46fbfee7eea7a6c0b35cbc7ffbf89fe/hedgehog/protocol/zmq/__init__.py#L38-L44
[ "def", "raw_from_delimited", "(", "msgs", ":", "DelimitedMsg", ")", "->", "RawMsgs", ":", "delim", "=", "_rindex", "(", "msgs", ",", "b''", ")", "return", "tuple", "(", "msgs", "[", ":", "delim", "]", ")", ",", "tuple", "(", "msgs", "[", "delim", "+"...
140df1ade46fbfee7eea7a6c0b35cbc7ffbf89fe
valid
from_delimited
\ From a message consisting of header frames, delimiter frame, and payload frames, return a tuple `(header, payload)`. The payload frames may be returned as sequences of bytes (raw) or as `Message`s.
hedgehog/protocol/zmq/__init__.py
def from_delimited(msgs: DelimitedMsg, side: CommSide) -> Msgs: """\ From a message consisting of header frames, delimiter frame, and payload frames, return a tuple `(header, payload)`. The payload frames may be returned as sequences of bytes (raw) or as `Message`s. """ header, raw_payload = raw_fro...
def from_delimited(msgs: DelimitedMsg, side: CommSide) -> Msgs: """\ From a message consisting of header frames, delimiter frame, and payload frames, return a tuple `(header, payload)`. The payload frames may be returned as sequences of bytes (raw) or as `Message`s. """ header, raw_payload = raw_fro...
[ "\\", "From", "a", "message", "consisting", "of", "header", "frames", "delimiter", "frame", "and", "payload", "frames", "return", "a", "tuple", "(", "header", "payload", ")", ".", "The", "payload", "frames", "may", "be", "returned", "as", "sequences", "of", ...
PRIArobotics/HedgehogProtocol
python
https://github.com/PRIArobotics/HedgehogProtocol/blob/140df1ade46fbfee7eea7a6c0b35cbc7ffbf89fe/hedgehog/protocol/zmq/__init__.py#L47-L53
[ "def", "from_delimited", "(", "msgs", ":", "DelimitedMsg", ",", "side", ":", "CommSide", ")", "->", "Msgs", ":", "header", ",", "raw_payload", "=", "raw_from_delimited", "(", "msgs", ")", "return", "header", ",", "tuple", "(", "side", ".", "parse", "(", ...
140df1ade46fbfee7eea7a6c0b35cbc7ffbf89fe
valid
figure
Creates a figure with *\*\*kwargs* with a window title *title*. Returns class :class:`matplotlib.figure.Figure`.
scisalt/matplotlib/figure.py
def figure(title=None, **kwargs): """ Creates a figure with *\*\*kwargs* with a window title *title*. Returns class :class:`matplotlib.figure.Figure`. """ fig = _figure(**kwargs) if title is not None: fig.canvas.set_window_title(title) return fig
def figure(title=None, **kwargs): """ Creates a figure with *\*\*kwargs* with a window title *title*. Returns class :class:`matplotlib.figure.Figure`. """ fig = _figure(**kwargs) if title is not None: fig.canvas.set_window_title(title) return fig
[ "Creates", "a", "figure", "with", "*", "\\", "*", "\\", "*", "kwargs", "*", "with", "a", "window", "title", "*", "title", "*", "." ]
joelfrederico/SciSalt
python
https://github.com/joelfrederico/SciSalt/blob/7bf57c49c7dde0a8b0aa337fbd2fbd527ce7a67f/scisalt/matplotlib/figure.py#L7-L16
[ "def", "figure", "(", "title", "=", "None", ",", "*", "*", "kwargs", ")", ":", "fig", "=", "_figure", "(", "*", "*", "kwargs", ")", "if", "title", "is", "not", "None", ":", "fig", ".", "canvas", ".", "set_window_title", "(", "title", ")", "return",...
7bf57c49c7dde0a8b0aa337fbd2fbd527ce7a67f
valid
create_admin
Create and save an admin user. :param username: Admin account's username. Defaults to 'admin' :param email: Admin account's email address. Defaults to 'admin@admin.com' :param password: Admin account's password. Defaults to 'admin' :returns: Django user with staff and...
awl/waelsteng.py
def create_admin(username='admin', email='admin@admin.com', password='admin'): """Create and save an admin user. :param username: Admin account's username. Defaults to 'admin' :param email: Admin account's email address. Defaults to 'admin@admin.com' :param password: Admin acc...
def create_admin(username='admin', email='admin@admin.com', password='admin'): """Create and save an admin user. :param username: Admin account's username. Defaults to 'admin' :param email: Admin account's email address. Defaults to 'admin@admin.com' :param password: Admin acc...
[ "Create", "and", "save", "an", "admin", "user", "." ]
cltrudeau/django-awl
python
https://github.com/cltrudeau/django-awl/blob/70d469ef9a161c1170b53aa017cf02d7c15eb90c/awl/waelsteng.py#L55-L71
[ "def", "create_admin", "(", "username", "=", "'admin'", ",", "email", "=", "'admin@admin.com'", ",", "password", "=", "'admin'", ")", ":", "admin", "=", "User", ".", "objects", ".", "create_user", "(", "username", ",", "email", ",", "password", ")", "admin...
70d469ef9a161c1170b53aa017cf02d7c15eb90c
valid
messages_from_response
Returns a list of the messages from the django MessageMiddleware package contained within the given response. This is to be used during unit testing when trying to see if a message was set properly in a view. :param response: HttpResponse object, likely obtained through a test client.get() or clie...
awl/waelsteng.py
def messages_from_response(response): """Returns a list of the messages from the django MessageMiddleware package contained within the given response. This is to be used during unit testing when trying to see if a message was set properly in a view. :param response: HttpResponse object, likely obtaine...
def messages_from_response(response): """Returns a list of the messages from the django MessageMiddleware package contained within the given response. This is to be used during unit testing when trying to see if a message was set properly in a view. :param response: HttpResponse object, likely obtaine...
[ "Returns", "a", "list", "of", "the", "messages", "from", "the", "django", "MessageMiddleware", "package", "contained", "within", "the", "given", "response", ".", "This", "is", "to", "be", "used", "during", "unit", "testing", "when", "trying", "to", "see", "i...
cltrudeau/django-awl
python
https://github.com/cltrudeau/django-awl/blob/70d469ef9a161c1170b53aa017cf02d7c15eb90c/awl/waelsteng.py#L74-L104
[ "def", "messages_from_response", "(", "response", ")", ":", "messages", "=", "[", "]", "if", "hasattr", "(", "response", ",", "'context'", ")", "and", "response", ".", "context", "and", "'messages'", "in", "response", ".", "context", ":", "messages", "=", ...
70d469ef9a161c1170b53aa017cf02d7c15eb90c
valid
AdminToolsMixin.initiate
Sets up the :class:`AdminSite` and creates a user with the appropriate privileges. This should be called from the inheritor's :class:`TestCase.setUp` method.
awl/waelsteng.py
def initiate(self): """Sets up the :class:`AdminSite` and creates a user with the appropriate privileges. This should be called from the inheritor's :class:`TestCase.setUp` method. """ self.site = admin.sites.AdminSite() self.admin_user = create_admin(self.USERNAME, self...
def initiate(self): """Sets up the :class:`AdminSite` and creates a user with the appropriate privileges. This should be called from the inheritor's :class:`TestCase.setUp` method. """ self.site = admin.sites.AdminSite() self.admin_user = create_admin(self.USERNAME, self...
[ "Sets", "up", "the", ":", "class", ":", "AdminSite", "and", "creates", "a", "user", "with", "the", "appropriate", "privileges", ".", "This", "should", "be", "called", "from", "the", "inheritor", "s", ":", "class", ":", "TestCase", ".", "setUp", "method", ...
cltrudeau/django-awl
python
https://github.com/cltrudeau/django-awl/blob/70d469ef9a161c1170b53aa017cf02d7c15eb90c/awl/waelsteng.py#L135-L142
[ "def", "initiate", "(", "self", ")", ":", "self", ".", "site", "=", "admin", ".", "sites", ".", "AdminSite", "(", ")", "self", ".", "admin_user", "=", "create_admin", "(", "self", ".", "USERNAME", ",", "self", ".", "EMAIL", ",", "self", ".", "PASSWOR...
70d469ef9a161c1170b53aa017cf02d7c15eb90c
valid
AdminToolsMixin.authorize
Authenticates the superuser account via the web login.
awl/waelsteng.py
def authorize(self): """Authenticates the superuser account via the web login.""" response = self.client.login(username=self.USERNAME, password=self.PASSWORD) self.assertTrue(response) self.authed = True
def authorize(self): """Authenticates the superuser account via the web login.""" response = self.client.login(username=self.USERNAME, password=self.PASSWORD) self.assertTrue(response) self.authed = True
[ "Authenticates", "the", "superuser", "account", "via", "the", "web", "login", "." ]
cltrudeau/django-awl
python
https://github.com/cltrudeau/django-awl/blob/70d469ef9a161c1170b53aa017cf02d7c15eb90c/awl/waelsteng.py#L144-L149
[ "def", "authorize", "(", "self", ")", ":", "response", "=", "self", ".", "client", ".", "login", "(", "username", "=", "self", ".", "USERNAME", ",", "password", "=", "self", ".", "PASSWORD", ")", "self", ".", "assertTrue", "(", "response", ")", "self",...
70d469ef9a161c1170b53aa017cf02d7c15eb90c
valid
AdminToolsMixin.authed_get
Does a django test client ``get`` against the given url after logging in the admin first. :param url: URL to fetch :param response_code: Expected response code from the URL fetch. This value is asserted. Defaults to 200 :param headers: O...
awl/waelsteng.py
def authed_get(self, url, response_code=200, headers={}, follow=False): """Does a django test client ``get`` against the given url after logging in the admin first. :param url: URL to fetch :param response_code: Expected response code from the URL fetch. This va...
def authed_get(self, url, response_code=200, headers={}, follow=False): """Does a django test client ``get`` against the given url after logging in the admin first. :param url: URL to fetch :param response_code: Expected response code from the URL fetch. This va...
[ "Does", "a", "django", "test", "client", "get", "against", "the", "given", "url", "after", "logging", "in", "the", "admin", "first", "." ]
cltrudeau/django-awl
python
https://github.com/cltrudeau/django-awl/blob/70d469ef9a161c1170b53aa017cf02d7c15eb90c/awl/waelsteng.py#L151-L173
[ "def", "authed_get", "(", "self", ",", "url", ",", "response_code", "=", "200", ",", "headers", "=", "{", "}", ",", "follow", "=", "False", ")", ":", "if", "not", "self", ".", "authed", ":", "self", ".", "authorize", "(", ")", "response", "=", "sel...
70d469ef9a161c1170b53aa017cf02d7c15eb90c
valid
AdminToolsMixin.authed_post
Does a django test client ``post`` against the given url after logging in the admin first. :param url: URL to fetch :param data: Dictionary to form contents to post :param response_code: Expected response code from the URL fetch. This value is ...
awl/waelsteng.py
def authed_post(self, url, data, response_code=200, follow=False, headers={}): """Does a django test client ``post`` against the given url after logging in the admin first. :param url: URL to fetch :param data: Dictionary to form contents to post ...
def authed_post(self, url, data, response_code=200, follow=False, headers={}): """Does a django test client ``post`` against the given url after logging in the admin first. :param url: URL to fetch :param data: Dictionary to form contents to post ...
[ "Does", "a", "django", "test", "client", "post", "against", "the", "given", "url", "after", "logging", "in", "the", "admin", "first", "." ]
cltrudeau/django-awl
python
https://github.com/cltrudeau/django-awl/blob/70d469ef9a161c1170b53aa017cf02d7c15eb90c/awl/waelsteng.py#L175-L197
[ "def", "authed_post", "(", "self", ",", "url", ",", "data", ",", "response_code", "=", "200", ",", "follow", "=", "False", ",", "headers", "=", "{", "}", ")", ":", "if", "not", "self", ".", "authed", ":", "self", ".", "authorize", "(", ")", "respon...
70d469ef9a161c1170b53aa017cf02d7c15eb90c
valid
AdminToolsMixin.visit_admin_link
This method is used for testing links that are in the change list view of the django admin. For the given instance and field name, the HTML link tags in the column are parsed for a URL and then invoked with :class:`AdminToolsMixin.authed_get`. :param admin_model: Instance o...
awl/waelsteng.py
def visit_admin_link(self, admin_model, instance, field_name, response_code=200, headers={}): """This method is used for testing links that are in the change list view of the django admin. For the given instance and field name, the HTML link tags in the column are parsed for a URL a...
def visit_admin_link(self, admin_model, instance, field_name, response_code=200, headers={}): """This method is used for testing links that are in the change list view of the django admin. For the given instance and field name, the HTML link tags in the column are parsed for a URL a...
[ "This", "method", "is", "used", "for", "testing", "links", "that", "are", "in", "the", "change", "list", "view", "of", "the", "django", "admin", ".", "For", "the", "given", "instance", "and", "field", "name", "the", "HTML", "link", "tags", "in", "the", ...
cltrudeau/django-awl
python
https://github.com/cltrudeau/django-awl/blob/70d469ef9a161c1170b53aa017cf02d7c15eb90c/awl/waelsteng.py#L199-L230
[ "def", "visit_admin_link", "(", "self", ",", "admin_model", ",", "instance", ",", "field_name", ",", "response_code", "=", "200", ",", "headers", "=", "{", "}", ")", ":", "html", "=", "self", ".", "field_value", "(", "admin_model", ",", "instance", ",", ...
70d469ef9a161c1170b53aa017cf02d7c15eb90c
valid
AdminToolsMixin.field_value
Returns the value displayed in the column on the web interface for a given instance. :param admin_model: Instance of a :class:`admin.ModelAdmin` object that is responsible for displaying the change list :param instance: Object instance that is the row in the ...
awl/waelsteng.py
def field_value(self, admin_model, instance, field_name): """Returns the value displayed in the column on the web interface for a given instance. :param admin_model: Instance of a :class:`admin.ModelAdmin` object that is responsible for displaying the change list ...
def field_value(self, admin_model, instance, field_name): """Returns the value displayed in the column on the web interface for a given instance. :param admin_model: Instance of a :class:`admin.ModelAdmin` object that is responsible for displaying the change list ...
[ "Returns", "the", "value", "displayed", "in", "the", "column", "on", "the", "web", "interface", "for", "a", "given", "instance", "." ]
cltrudeau/django-awl
python
https://github.com/cltrudeau/django-awl/blob/70d469ef9a161c1170b53aa017cf02d7c15eb90c/awl/waelsteng.py#L232-L245
[ "def", "field_value", "(", "self", ",", "admin_model", ",", "instance", ",", "field_name", ")", ":", "_", ",", "_", ",", "value", "=", "lookup_field", "(", "field_name", ",", "instance", ",", "admin_model", ")", "return", "value" ]
70d469ef9a161c1170b53aa017cf02d7c15eb90c
valid
AdminToolsMixin.field_names
Returns the names of the fields/columns used by the given admin model. :param admin_model: Instance of a :class:`admin.ModelAdmin` object that is responsible for displaying the change list :returns: List of field names
awl/waelsteng.py
def field_names(self, admin_model): """Returns the names of the fields/columns used by the given admin model. :param admin_model: Instance of a :class:`admin.ModelAdmin` object that is responsible for displaying the change list :returns: List of field...
def field_names(self, admin_model): """Returns the names of the fields/columns used by the given admin model. :param admin_model: Instance of a :class:`admin.ModelAdmin` object that is responsible for displaying the change list :returns: List of field...
[ "Returns", "the", "names", "of", "the", "fields", "/", "columns", "used", "by", "the", "given", "admin", "model", "." ]
cltrudeau/django-awl
python
https://github.com/cltrudeau/django-awl/blob/70d469ef9a161c1170b53aa017cf02d7c15eb90c/awl/waelsteng.py#L247-L258
[ "def", "field_names", "(", "self", ",", "admin_model", ")", ":", "request", "=", "FakeRequest", "(", "user", "=", "self", ".", "admin_user", ")", "return", "admin_model", ".", "get_list_display", "(", "request", ")" ]
70d469ef9a161c1170b53aa017cf02d7c15eb90c
valid
githubtunnel
Opens a nested tunnel, first to *user1*@*server1*, then to *user2*@*server2*, for accessing on *port*. If *verbose* is true, prints various ssh commands. If *stanford* is true, shifts ports up by 1. Attempts to get *user1*, *user2* from environment variable ``USER_NAME`` if called from the command line.
scisalt/utils/githubtunnel.py
def githubtunnel(user1, server1, user2, server2, port, verbose, stanford=False): """ Opens a nested tunnel, first to *user1*@*server1*, then to *user2*@*server2*, for accessing on *port*. If *verbose* is true, prints various ssh commands. If *stanford* is true, shifts ports up by 1. Attempts to g...
def githubtunnel(user1, server1, user2, server2, port, verbose, stanford=False): """ Opens a nested tunnel, first to *user1*@*server1*, then to *user2*@*server2*, for accessing on *port*. If *verbose* is true, prints various ssh commands. If *stanford* is true, shifts ports up by 1. Attempts to g...
[ "Opens", "a", "nested", "tunnel", "first", "to", "*", "user1", "*", "@", "*", "server1", "*", "then", "to", "*", "user2", "*", "@", "*", "server2", "*", "for", "accessing", "on", "*", "port", "*", "." ]
joelfrederico/SciSalt
python
https://github.com/joelfrederico/SciSalt/blob/7bf57c49c7dde0a8b0aa337fbd2fbd527ce7a67f/scisalt/utils/githubtunnel.py#L11-L42
[ "def", "githubtunnel", "(", "user1", ",", "server1", ",", "user2", ",", "server2", ",", "port", ",", "verbose", ",", "stanford", "=", "False", ")", ":", "if", "stanford", ":", "port_shift", "=", "1", "else", ":", "port_shift", "=", "0", "# command1 = 'ss...
7bf57c49c7dde0a8b0aa337fbd2fbd527ce7a67f
valid
Imshow_Slider_Array.imgmax
Highest value of input image.
scisalt/matplotlib/Imshow_Slider_Array_mod.py
def imgmax(self): """ Highest value of input image. """ if not hasattr(self, '_imgmax'): imgmax = _np.max(self.images[0]) for img in self.images: imax = _np.max(img) if imax > imgmax: imgmax = imax s...
def imgmax(self): """ Highest value of input image. """ if not hasattr(self, '_imgmax'): imgmax = _np.max(self.images[0]) for img in self.images: imax = _np.max(img) if imax > imgmax: imgmax = imax s...
[ "Highest", "value", "of", "input", "image", "." ]
joelfrederico/SciSalt
python
https://github.com/joelfrederico/SciSalt/blob/7bf57c49c7dde0a8b0aa337fbd2fbd527ce7a67f/scisalt/matplotlib/Imshow_Slider_Array_mod.py#L225-L238
[ "def", "imgmax", "(", "self", ")", ":", "if", "not", "hasattr", "(", "self", ",", "'_imgmax'", ")", ":", "imgmax", "=", "_np", ".", "max", "(", "self", ".", "images", "[", "0", "]", ")", "for", "img", "in", "self", ".", "images", ":", "imax", "...
7bf57c49c7dde0a8b0aa337fbd2fbd527ce7a67f
valid
Imshow_Slider_Array.imgmin
Lowest value of input image.
scisalt/matplotlib/Imshow_Slider_Array_mod.py
def imgmin(self): """ Lowest value of input image. """ if not hasattr(self, '_imgmin'): imgmin = _np.min(self.images[0]) for img in self.images: imin = _np.min(img) if imin > imgmin: imgmin = imin se...
def imgmin(self): """ Lowest value of input image. """ if not hasattr(self, '_imgmin'): imgmin = _np.min(self.images[0]) for img in self.images: imin = _np.min(img) if imin > imgmin: imgmin = imin se...
[ "Lowest", "value", "of", "input", "image", "." ]
joelfrederico/SciSalt
python
https://github.com/joelfrederico/SciSalt/blob/7bf57c49c7dde0a8b0aa337fbd2fbd527ce7a67f/scisalt/matplotlib/Imshow_Slider_Array_mod.py#L244-L256
[ "def", "imgmin", "(", "self", ")", ":", "if", "not", "hasattr", "(", "self", ",", "'_imgmin'", ")", ":", "imgmin", "=", "_np", ".", "min", "(", "self", ".", "images", "[", "0", "]", ")", "for", "img", "in", "self", ".", "images", ":", "imin", "...
7bf57c49c7dde0a8b0aa337fbd2fbd527ce7a67f
valid
spawn
spawns a greenlet that does not print exceptions to the screen. if you use this function you MUST use this module's join or joinall otherwise the exception will be lost
src/infi/gevent_utils/silent_greenlets.py
def spawn(func, *args, **kwargs): """ spawns a greenlet that does not print exceptions to the screen. if you use this function you MUST use this module's join or joinall otherwise the exception will be lost """ return gevent.spawn(wrap_uncaught_greenlet_exceptions(func), *args, **kwargs)
def spawn(func, *args, **kwargs): """ spawns a greenlet that does not print exceptions to the screen. if you use this function you MUST use this module's join or joinall otherwise the exception will be lost """ return gevent.spawn(wrap_uncaught_greenlet_exceptions(func), *args, **kwargs)
[ "spawns", "a", "greenlet", "that", "does", "not", "print", "exceptions", "to", "the", "screen", ".", "if", "you", "use", "this", "function", "you", "MUST", "use", "this", "module", "s", "join", "or", "joinall", "otherwise", "the", "exception", "will", "be"...
Infinidat/infi.gevent_utils
python
https://github.com/Infinidat/infi.gevent_utils/blob/7eb3c1601b8f2c9aaa3a83154ee7dfce8e5e5a5a/src/infi/gevent_utils/silent_greenlets.py#L32-L35
[ "def", "spawn", "(", "func", ",", "*", "args", ",", "*", "*", "kwargs", ")", ":", "return", "gevent", ".", "spawn", "(", "wrap_uncaught_greenlet_exceptions", "(", "func", ")", ",", "*", "args", ",", "*", "*", "kwargs", ")" ]
7eb3c1601b8f2c9aaa3a83154ee7dfce8e5e5a5a
valid
_usage
Returns usage string with no trailing whitespace.
cuts/main.py
def _usage(prog_name=os.path.basename(sys.argv[0])): '''Returns usage string with no trailing whitespace.''' spacer = ' ' * len('usage: ') usage = prog_name + ' -b LIST [-S SEPARATOR] [file ...]\n' \ + spacer + prog_name + ' -c LIST [-S SEPERATOR] [file ...]\n' \ + spacer + prog_name \ ...
def _usage(prog_name=os.path.basename(sys.argv[0])): '''Returns usage string with no trailing whitespace.''' spacer = ' ' * len('usage: ') usage = prog_name + ' -b LIST [-S SEPARATOR] [file ...]\n' \ + spacer + prog_name + ' -c LIST [-S SEPERATOR] [file ...]\n' \ + spacer + prog_name \ ...
[ "Returns", "usage", "string", "with", "no", "trailing", "whitespace", "." ]
jpweiser/cuts
python
https://github.com/jpweiser/cuts/blob/5baf7f2e145045942ee8dcaccbc47f8f821fcb56/cuts/main.py#L11-L20
[ "def", "_usage", "(", "prog_name", "=", "os", ".", "path", ".", "basename", "(", "sys", ".", "argv", "[", "0", "]", ")", ")", ":", "spacer", "=", "' '", "*", "len", "(", "'usage: '", ")", "usage", "=", "prog_name", "+", "' -b LIST [-S SEPARATOR] [file ...
5baf7f2e145045942ee8dcaccbc47f8f821fcb56
valid
_parse_args
Setup argparser to process arguments and generate help
cuts/main.py
def _parse_args(args): """Setup argparser to process arguments and generate help""" # parser uses custom usage string, with 'usage: ' removed, as it is # added automatically via argparser. parser = argparse.ArgumentParser(description="Remove and/or rearrange " + "se...
def _parse_args(args): """Setup argparser to process arguments and generate help""" # parser uses custom usage string, with 'usage: ' removed, as it is # added automatically via argparser. parser = argparse.ArgumentParser(description="Remove and/or rearrange " + "se...
[ "Setup", "argparser", "to", "process", "arguments", "and", "generate", "help" ]
jpweiser/cuts
python
https://github.com/jpweiser/cuts/blob/5baf7f2e145045942ee8dcaccbc47f8f821fcb56/cuts/main.py#L34-L60
[ "def", "_parse_args", "(", "args", ")", ":", "# parser uses custom usage string, with 'usage: ' removed, as it is", "# added automatically via argparser.", "parser", "=", "argparse", ".", "ArgumentParser", "(", "description", "=", "\"Remove and/or rearrange \"", "+", "\"sections ...
5baf7f2e145045942ee8dcaccbc47f8f821fcb56
valid
main
Processes command line arguments and file i/o
cuts/main.py
def main(args=sys.argv[1:]): '''Processes command line arguments and file i/o''' if not args: sys.stderr.write(_usage() + '\n') sys.exit(4) else: parsed = _parse_args(args) # Set delim based on whether or not regex is desired by user delim = parsed.delimiter if parsed.regex ...
def main(args=sys.argv[1:]): '''Processes command line arguments and file i/o''' if not args: sys.stderr.write(_usage() + '\n') sys.exit(4) else: parsed = _parse_args(args) # Set delim based on whether or not regex is desired by user delim = parsed.delimiter if parsed.regex ...
[ "Processes", "command", "line", "arguments", "and", "file", "i", "/", "o" ]
jpweiser/cuts
python
https://github.com/jpweiser/cuts/blob/5baf7f2e145045942ee8dcaccbc47f8f821fcb56/cuts/main.py#L62-L124
[ "def", "main", "(", "args", "=", "sys", ".", "argv", "[", "1", ":", "]", ")", ":", "if", "not", "args", ":", "sys", ".", "stderr", ".", "write", "(", "_usage", "(", ")", "+", "'\\n'", ")", "sys", ".", "exit", "(", "4", ")", "else", ":", "pa...
5baf7f2e145045942ee8dcaccbc47f8f821fcb56
valid
NonUniformImage_axes
Returns axes *x, y* for a given image *img* to be used with :func:`scisalt.matplotlib.NonUniformImage`. Returns ------- x, y : float, float
scisalt/matplotlib/NonUniformImage_axes.py
def NonUniformImage_axes(img): """ Returns axes *x, y* for a given image *img* to be used with :func:`scisalt.matplotlib.NonUniformImage`. Returns ------- x, y : float, float """ xmin = 0 xmax = img.shape[1]-1 ymin = 0 ymax = img.shape[0]-1 x = _np.linspace(xmin, xmax, img.s...
def NonUniformImage_axes(img): """ Returns axes *x, y* for a given image *img* to be used with :func:`scisalt.matplotlib.NonUniformImage`. Returns ------- x, y : float, float """ xmin = 0 xmax = img.shape[1]-1 ymin = 0 ymax = img.shape[0]-1 x = _np.linspace(xmin, xmax, img.s...
[ "Returns", "axes", "*", "x", "y", "*", "for", "a", "given", "image", "*", "img", "*", "to", "be", "used", "with", ":", "func", ":", "scisalt", ".", "matplotlib", ".", "NonUniformImage", "." ]
joelfrederico/SciSalt
python
https://github.com/joelfrederico/SciSalt/blob/7bf57c49c7dde0a8b0aa337fbd2fbd527ce7a67f/scisalt/matplotlib/NonUniformImage_axes.py#L7-L21
[ "def", "NonUniformImage_axes", "(", "img", ")", ":", "xmin", "=", "0", "xmax", "=", "img", ".", "shape", "[", "1", "]", "-", "1", "ymin", "=", "0", "ymax", "=", "img", ".", "shape", "[", "0", "]", "-", "1", "x", "=", "_np", ".", "linspace", "...
7bf57c49c7dde0a8b0aa337fbd2fbd527ce7a67f
valid
move
View to be used in the django admin for changing a :class:`RankedModel` object's rank. See :func:`admin_link_move_up` and :func:`admin_link_move_down` for helper functions to incoroprate in your admin models. Upon completion this view sends the caller back to the referring page. :param content_ty...
awl/rankedmodel/views.py
def move(request, content_type_id, obj_id, rank): """View to be used in the django admin for changing a :class:`RankedModel` object's rank. See :func:`admin_link_move_up` and :func:`admin_link_move_down` for helper functions to incoroprate in your admin models. Upon completion this view sends the ...
def move(request, content_type_id, obj_id, rank): """View to be used in the django admin for changing a :class:`RankedModel` object's rank. See :func:`admin_link_move_up` and :func:`admin_link_move_down` for helper functions to incoroprate in your admin models. Upon completion this view sends the ...
[ "View", "to", "be", "used", "in", "the", "django", "admin", "for", "changing", "a", ":", "class", ":", "RankedModel", "object", "s", "rank", ".", "See", ":", "func", ":", "admin_link_move_up", "and", ":", "func", ":", "admin_link_move_down", "for", "helper...
cltrudeau/django-awl
python
https://github.com/cltrudeau/django-awl/blob/70d469ef9a161c1170b53aa017cf02d7c15eb90c/awl/rankedmodel/views.py#L11-L31
[ "def", "move", "(", "request", ",", "content_type_id", ",", "obj_id", ",", "rank", ")", ":", "content_type", "=", "ContentType", ".", "objects", ".", "get_for_id", "(", "content_type_id", ")", "obj", "=", "get_object_or_404", "(", "content_type", ".", "model_c...
70d469ef9a161c1170b53aa017cf02d7c15eb90c
valid
open_s3
Opens connection to S3 returning bucket and key
paved/s3.py
def open_s3(bucket): """ Opens connection to S3 returning bucket and key """ conn = boto.connect_s3(options.paved.s3.access_id, options.paved.s3.secret) try: bucket = conn.get_bucket(bucket) except boto.exception.S3ResponseError: bucket = conn.create_bucket(bucket) return buc...
def open_s3(bucket): """ Opens connection to S3 returning bucket and key """ conn = boto.connect_s3(options.paved.s3.access_id, options.paved.s3.secret) try: bucket = conn.get_bucket(bucket) except boto.exception.S3ResponseError: bucket = conn.create_bucket(bucket) return buc...
[ "Opens", "connection", "to", "S3", "returning", "bucket", "and", "key" ]
eykd/paved
python
https://github.com/eykd/paved/blob/f04f8a4248c571f3d5ce882b325884a3e5d80203/paved/s3.py#L32-L41
[ "def", "open_s3", "(", "bucket", ")", ":", "conn", "=", "boto", ".", "connect_s3", "(", "options", ".", "paved", ".", "s3", ".", "access_id", ",", "options", ".", "paved", ".", "s3", ".", "secret", ")", "try", ":", "bucket", "=", "conn", ".", "get_...
f04f8a4248c571f3d5ce882b325884a3e5d80203
valid
upload_s3
Upload a local file to S3.
paved/s3.py
def upload_s3(file_path, bucket_name, file_key, force=False, acl='private'): """Upload a local file to S3. """ file_path = path(file_path) bucket = open_s3(bucket_name) if file_path.isdir(): # Upload the contents of the dir path. paths = file_path.listdir() paths_keys = list...
def upload_s3(file_path, bucket_name, file_key, force=False, acl='private'): """Upload a local file to S3. """ file_path = path(file_path) bucket = open_s3(bucket_name) if file_path.isdir(): # Upload the contents of the dir path. paths = file_path.listdir() paths_keys = list...
[ "Upload", "a", "local", "file", "to", "S3", "." ]
eykd/paved
python
https://github.com/eykd/paved/blob/f04f8a4248c571f3d5ce882b325884a3e5d80203/paved/s3.py#L44-L94
[ "def", "upload_s3", "(", "file_path", ",", "bucket_name", ",", "file_key", ",", "force", "=", "False", ",", "acl", "=", "'private'", ")", ":", "file_path", "=", "path", "(", "file_path", ")", "bucket", "=", "open_s3", "(", "bucket_name", ")", "if", "file...
f04f8a4248c571f3d5ce882b325884a3e5d80203
valid
download_s3
Download a remote file from S3.
paved/s3.py
def download_s3(bucket_name, file_key, file_path, force=False): """Download a remote file from S3. """ file_path = path(file_path) bucket = open_s3(bucket_name) file_dir = file_path.dirname() file_dir.makedirs() s3_key = bucket.get_key(file_key) if file_path.exists(): file_data...
def download_s3(bucket_name, file_key, file_path, force=False): """Download a remote file from S3. """ file_path = path(file_path) bucket = open_s3(bucket_name) file_dir = file_path.dirname() file_dir.makedirs() s3_key = bucket.get_key(file_key) if file_path.exists(): file_data...
[ "Download", "a", "remote", "file", "from", "S3", "." ]
eykd/paved
python
https://github.com/eykd/paved/blob/f04f8a4248c571f3d5ce882b325884a3e5d80203/paved/s3.py#L97-L138
[ "def", "download_s3", "(", "bucket_name", ",", "file_key", ",", "file_path", ",", "force", "=", "False", ")", ":", "file_path", "=", "path", "(", "file_path", ")", "bucket", "=", "open_s3", "(", "bucket_name", ")", "file_dir", "=", "file_path", ".", "dirna...
f04f8a4248c571f3d5ce882b325884a3e5d80203
valid
create_ical
Creates an ical .ics file for an event using python-card-me.
build/lib/happenings/views.py
def create_ical(request, slug): """ Creates an ical .ics file for an event using python-card-me. """ event = get_object_or_404(Event, slug=slug) # convert dates to datetimes. # when we change code to datetimes, we won't have to do this. start = event.start_date start = datetime.datetime(start.ye...
def create_ical(request, slug): """ Creates an ical .ics file for an event using python-card-me. """ event = get_object_or_404(Event, slug=slug) # convert dates to datetimes. # when we change code to datetimes, we won't have to do this. start = event.start_date start = datetime.datetime(start.ye...
[ "Creates", "an", "ical", ".", "ics", "file", "for", "an", "event", "using", "python", "-", "card", "-", "me", "." ]
tBaxter/tango-happenings
python
https://github.com/tBaxter/tango-happenings/blob/cb3c49ea39e0a6cef9c6ffb534c2fbf401139ba2/build/lib/happenings/views.py#L125-L149
[ "def", "create_ical", "(", "request", ",", "slug", ")", ":", "event", "=", "get_object_or_404", "(", "Event", ",", "slug", "=", "slug", ")", "# convert dates to datetimes.", "# when we change code to datetimes, we won't have to do this.", "start", "=", "event", ".", "...
cb3c49ea39e0a6cef9c6ffb534c2fbf401139ba2
valid
event_all_comments_list
Returns a list view of all comments for a given event. Combines event comments and update comments in one list.
build/lib/happenings/views.py
def event_all_comments_list(request, slug): """ Returns a list view of all comments for a given event. Combines event comments and update comments in one list. """ event = get_object_or_404(Event, slug=slug) comments = event.all_comments page = int(request.GET.get('page', 99999)) # feed emp...
def event_all_comments_list(request, slug): """ Returns a list view of all comments for a given event. Combines event comments and update comments in one list. """ event = get_object_or_404(Event, slug=slug) comments = event.all_comments page = int(request.GET.get('page', 99999)) # feed emp...
[ "Returns", "a", "list", "view", "of", "all", "comments", "for", "a", "given", "event", ".", "Combines", "event", "comments", "and", "update", "comments", "in", "one", "list", "." ]
tBaxter/tango-happenings
python
https://github.com/tBaxter/tango-happenings/blob/cb3c49ea39e0a6cef9c6ffb534c2fbf401139ba2/build/lib/happenings/views.py#L152-L178
[ "def", "event_all_comments_list", "(", "request", ",", "slug", ")", ":", "event", "=", "get_object_or_404", "(", "Event", ",", "slug", "=", "slug", ")", "comments", "=", "event", ".", "all_comments", "page", "=", "int", "(", "request", ".", "GET", ".", "...
cb3c49ea39e0a6cef9c6ffb534c2fbf401139ba2
valid
event_update_list
Returns a list view of updates for a given event. If the event is over, it will be in chronological order. If the event is upcoming or still going, it will be in reverse chronological order.
build/lib/happenings/views.py
def event_update_list(request, slug): """ Returns a list view of updates for a given event. If the event is over, it will be in chronological order. If the event is upcoming or still going, it will be in reverse chronological order. """ event = get_object_or_404(Event, slug=slug) updates...
def event_update_list(request, slug): """ Returns a list view of updates for a given event. If the event is over, it will be in chronological order. If the event is upcoming or still going, it will be in reverse chronological order. """ event = get_object_or_404(Event, slug=slug) updates...
[ "Returns", "a", "list", "view", "of", "updates", "for", "a", "given", "event", ".", "If", "the", "event", "is", "over", "it", "will", "be", "in", "chronological", "order", ".", "If", "the", "event", "is", "upcoming", "or", "still", "going", "it", "will...
tBaxter/tango-happenings
python
https://github.com/tBaxter/tango-happenings/blob/cb3c49ea39e0a6cef9c6ffb534c2fbf401139ba2/build/lib/happenings/views.py#L181-L199
[ "def", "event_update_list", "(", "request", ",", "slug", ")", ":", "event", "=", "get_object_or_404", "(", "Event", ",", "slug", "=", "slug", ")", "updates", "=", "Update", ".", "objects", ".", "filter", "(", "event__slug", "=", "slug", ")", "if", "event...
cb3c49ea39e0a6cef9c6ffb534c2fbf401139ba2
valid
video_list
Displays list of videos for given event.
build/lib/happenings/views.py
def video_list(request, slug): """ Displays list of videos for given event. """ event = get_object_or_404(Event, slug=slug) return render(request, 'video/video_list.html', { 'event': event, 'video_list': event.eventvideo_set.all() })
def video_list(request, slug): """ Displays list of videos for given event. """ event = get_object_or_404(Event, slug=slug) return render(request, 'video/video_list.html', { 'event': event, 'video_list': event.eventvideo_set.all() })
[ "Displays", "list", "of", "videos", "for", "given", "event", "." ]
tBaxter/tango-happenings
python
https://github.com/tBaxter/tango-happenings/blob/cb3c49ea39e0a6cef9c6ffb534c2fbf401139ba2/build/lib/happenings/views.py#L202-L210
[ "def", "video_list", "(", "request", ",", "slug", ")", ":", "event", "=", "get_object_or_404", "(", "Event", ",", "slug", "=", "slug", ")", "return", "render", "(", "request", ",", "'video/video_list.html'", ",", "{", "'event'", ":", "event", ",", "'video_...
cb3c49ea39e0a6cef9c6ffb534c2fbf401139ba2
valid
add_event
Public form to add an event.
build/lib/happenings/views.py
def add_event(request): """ Public form to add an event. """ form = AddEventForm(request.POST or None) if form.is_valid(): instance = form.save(commit=False) instance.sites = settings.SITE_ID instance.submitted_by = request.user instance.approved = True instance.slug ...
def add_event(request): """ Public form to add an event. """ form = AddEventForm(request.POST or None) if form.is_valid(): instance = form.save(commit=False) instance.sites = settings.SITE_ID instance.submitted_by = request.user instance.approved = True instance.slug ...
[ "Public", "form", "to", "add", "an", "event", "." ]
tBaxter/tango-happenings
python
https://github.com/tBaxter/tango-happenings/blob/cb3c49ea39e0a6cef9c6ffb534c2fbf401139ba2/build/lib/happenings/views.py#L214-L229
[ "def", "add_event", "(", "request", ")", ":", "form", "=", "AddEventForm", "(", "request", ".", "POST", "or", "None", ")", "if", "form", ".", "is_valid", "(", ")", ":", "instance", "=", "form", ".", "save", "(", "commit", "=", "False", ")", "instance...
cb3c49ea39e0a6cef9c6ffb534c2fbf401139ba2
valid
add_memory
Adds a memory to an event.
build/lib/happenings/views.py
def add_memory(request, slug): """ Adds a memory to an event. """ event = get_object_or_404(Event, slug=slug) form = MemoryForm(request.POST or None, request.FILES or None) if form.is_valid(): instance = form.save(commit=False) instance.user = request.user instance.event = event ...
def add_memory(request, slug): """ Adds a memory to an event. """ event = get_object_or_404(Event, slug=slug) form = MemoryForm(request.POST or None, request.FILES or None) if form.is_valid(): instance = form.save(commit=False) instance.user = request.user instance.event = event ...
[ "Adds", "a", "memory", "to", "an", "event", "." ]
tBaxter/tango-happenings
python
https://github.com/tBaxter/tango-happenings/blob/cb3c49ea39e0a6cef9c6ffb534c2fbf401139ba2/build/lib/happenings/views.py#L266-L288
[ "def", "add_memory", "(", "request", ",", "slug", ")", ":", "event", "=", "get_object_or_404", "(", "Event", ",", "slug", "=", "slug", ")", "form", "=", "MemoryForm", "(", "request", ".", "POST", "or", "None", ",", "request", ".", "FILES", "or", "None"...
cb3c49ea39e0a6cef9c6ffb534c2fbf401139ba2
valid
process_upload
Helper function that actually processes and saves the upload(s). Segregated out for readability.
build/lib/happenings/views.py
def process_upload(upload_file, instance, form, event, request): """ Helper function that actually processes and saves the upload(s). Segregated out for readability. """ caption = form.cleaned_data.get('caption') upload_name = upload_file.name.lower() if upload_name.endswith('.jpg') or uploa...
def process_upload(upload_file, instance, form, event, request): """ Helper function that actually processes and saves the upload(s). Segregated out for readability. """ caption = form.cleaned_data.get('caption') upload_name = upload_file.name.lower() if upload_name.endswith('.jpg') or uploa...
[ "Helper", "function", "that", "actually", "processes", "and", "saves", "the", "upload", "(", "s", ")", ".", "Segregated", "out", "for", "readability", "." ]
tBaxter/tango-happenings
python
https://github.com/tBaxter/tango-happenings/blob/cb3c49ea39e0a6cef9c6ffb534c2fbf401139ba2/build/lib/happenings/views.py#L313-L330
[ "def", "process_upload", "(", "upload_file", ",", "instance", ",", "form", ",", "event", ",", "request", ")", ":", "caption", "=", "form", ".", "cleaned_data", ".", "get", "(", "'caption'", ")", "upload_name", "=", "upload_file", ".", "name", ".", "lower",...
cb3c49ea39e0a6cef9c6ffb534c2fbf401139ba2
valid
_get_search_path
Find the parent python path that contains the __main__'s file directory :param main_file_dir: __main__'s file directory :param sys_path: paths list to match directory against (like sys.path)
rel_imp.py
def _get_search_path(main_file_dir, sys_path): ''' Find the parent python path that contains the __main__'s file directory :param main_file_dir: __main__'s file directory :param sys_path: paths list to match directory against (like sys.path) ''' # List to gather candidate parent paths paths...
def _get_search_path(main_file_dir, sys_path): ''' Find the parent python path that contains the __main__'s file directory :param main_file_dir: __main__'s file directory :param sys_path: paths list to match directory against (like sys.path) ''' # List to gather candidate parent paths paths...
[ "Find", "the", "parent", "python", "path", "that", "contains", "the", "__main__", "s", "file", "directory" ]
joaduo/rel_imp
python
https://github.com/joaduo/rel_imp/blob/eff2d4608d6857d18ec8acda661cdf106a9f32d0/rel_imp.py#L37-L59
[ "def", "_get_search_path", "(", "main_file_dir", ",", "sys_path", ")", ":", "# List to gather candidate parent paths", "paths", "=", "[", "]", "# look for paths containing the directory", "for", "pth", "in", "sys_path", ":", "# convert relative path to absolute", "pth", "="...
eff2d4608d6857d18ec8acda661cdf106a9f32d0
valid
_try_search_paths
Try different strategies to found the path containing the __main__'s file. Will try strategies, in the following order: 1. Building file's path with PWD env var. 2. Building file's path from absolute file's path. 3. Buidling file's path from real file's path. :param main_globals: global...
rel_imp.py
def _try_search_paths(main_globals): ''' Try different strategies to found the path containing the __main__'s file. Will try strategies, in the following order: 1. Building file's path with PWD env var. 2. Building file's path from absolute file's path. 3. Buidling file's path from r...
def _try_search_paths(main_globals): ''' Try different strategies to found the path containing the __main__'s file. Will try strategies, in the following order: 1. Building file's path with PWD env var. 2. Building file's path from absolute file's path. 3. Buidling file's path from r...
[ "Try", "different", "strategies", "to", "found", "the", "path", "containing", "the", "__main__", "s", "file", ".", "Will", "try", "strategies", "in", "the", "following", "order", ":", "1", ".", "Building", "file", "s", "path", "with", "PWD", "env", "var", ...
joaduo/rel_imp
python
https://github.com/joaduo/rel_imp/blob/eff2d4608d6857d18ec8acda661cdf106a9f32d0/rel_imp.py#L72-L102
[ "def", "_try_search_paths", "(", "main_globals", ")", ":", "# try with abspath", "fl", "=", "main_globals", "[", "'__file__'", "]", "search_path", "=", "None", "if", "not", "path", ".", "isabs", "(", "fl", ")", "and", "os", ".", "getenv", "(", "'PWD'", ")"...
eff2d4608d6857d18ec8acda661cdf106a9f32d0
valid
_solve_pkg
Find parent python path of __main__. From there solve the package containing __main__, import it and set __package__ variable. :param main_globals: globals dictionary in __main__
rel_imp.py
def _solve_pkg(main_globals): ''' Find parent python path of __main__. From there solve the package containing __main__, import it and set __package__ variable. :param main_globals: globals dictionary in __main__ ''' # find __main__'s file directory and search path main_dir, search_path = _...
def _solve_pkg(main_globals): ''' Find parent python path of __main__. From there solve the package containing __main__, import it and set __package__ variable. :param main_globals: globals dictionary in __main__ ''' # find __main__'s file directory and search path main_dir, search_path = _...
[ "Find", "parent", "python", "path", "of", "__main__", ".", "From", "there", "solve", "the", "package", "containing", "__main__", "import", "it", "and", "set", "__package__", "variable", "." ]
joaduo/rel_imp
python
https://github.com/joaduo/rel_imp/blob/eff2d4608d6857d18ec8acda661cdf106a9f32d0/rel_imp.py#L105-L152
[ "def", "_solve_pkg", "(", "main_globals", ")", ":", "# find __main__'s file directory and search path", "main_dir", ",", "search_path", "=", "_try_search_paths", "(", "main_globals", ")", "if", "not", "search_path", ":", "_log_debug", "(", "'Could not solve parent python pa...
eff2d4608d6857d18ec8acda661cdf106a9f32d0
valid
_log_debug
Log at debug level :param msg: message to log
rel_imp.py
def _log_debug(msg): ''' Log at debug level :param msg: message to log ''' if _log_level <= DEBUG: if _log_level == TRACE: traceback.print_stack() _log(msg)
def _log_debug(msg): ''' Log at debug level :param msg: message to log ''' if _log_level <= DEBUG: if _log_level == TRACE: traceback.print_stack() _log(msg)
[ "Log", "at", "debug", "level", ":", "param", "msg", ":", "message", "to", "log" ]
joaduo/rel_imp
python
https://github.com/joaduo/rel_imp/blob/eff2d4608d6857d18ec8acda661cdf106a9f32d0/rel_imp.py#L164-L172
[ "def", "_log_debug", "(", "msg", ")", ":", "if", "_log_level", "<=", "DEBUG", ":", "if", "_log_level", "==", "TRACE", ":", "traceback", ".", "print_stack", "(", ")", "_log", "(", "msg", ")" ]
eff2d4608d6857d18ec8acda661cdf106a9f32d0
valid
init
Enables explicit relative import in sub-modules when ran as __main__ :param log_level: module's inner logger level (equivalent to logging pkg)
rel_imp.py
def init(log_level=ERROR): ''' Enables explicit relative import in sub-modules when ran as __main__ :param log_level: module's inner logger level (equivalent to logging pkg) ''' global _initialized if _initialized: return else: _initialized = True # find caller's frame ...
def init(log_level=ERROR): ''' Enables explicit relative import in sub-modules when ran as __main__ :param log_level: module's inner logger level (equivalent to logging pkg) ''' global _initialized if _initialized: return else: _initialized = True # find caller's frame ...
[ "Enables", "explicit", "relative", "import", "in", "sub", "-", "modules", "when", "ran", "as", "__main__", ":", "param", "log_level", ":", "module", "s", "inner", "logger", "level", "(", "equivalent", "to", "logging", "pkg", ")" ]
joaduo/rel_imp
python
https://github.com/joaduo/rel_imp/blob/eff2d4608d6857d18ec8acda661cdf106a9f32d0/rel_imp.py#L195-L209
[ "def", "init", "(", "log_level", "=", "ERROR", ")", ":", "global", "_initialized", "if", "_initialized", ":", "return", "else", ":", "_initialized", "=", "True", "# find caller's frame", "frame", "=", "currentframe", "(", ")", "# go 1 frame back to find who imported...
eff2d4608d6857d18ec8acda661cdf106a9f32d0
valid
_init
Enables explicit relative import in sub-modules when ran as __main__ :param log_level: module's inner logger level (equivalent to logging pkg)
rel_imp.py
def _init(frame, log_level=ERROR): ''' Enables explicit relative import in sub-modules when ran as __main__ :param log_level: module's inner logger level (equivalent to logging pkg) ''' global _log_level _log_level = log_level # now we have access to the module globals main_globals = fra...
def _init(frame, log_level=ERROR): ''' Enables explicit relative import in sub-modules when ran as __main__ :param log_level: module's inner logger level (equivalent to logging pkg) ''' global _log_level _log_level = log_level # now we have access to the module globals main_globals = fra...
[ "Enables", "explicit", "relative", "import", "in", "sub", "-", "modules", "when", "ran", "as", "__main__", ":", "param", "log_level", ":", "module", "s", "inner", "logger", "level", "(", "equivalent", "to", "logging", "pkg", ")" ]
joaduo/rel_imp
python
https://github.com/joaduo/rel_imp/blob/eff2d4608d6857d18ec8acda661cdf106a9f32d0/rel_imp.py#L225-L248
[ "def", "_init", "(", "frame", ",", "log_level", "=", "ERROR", ")", ":", "global", "_log_level", "_log_level", "=", "log_level", "# now we have access to the module globals", "main_globals", "=", "frame", ".", "f_globals", "# If __package__ set or it isn't the __main__, stop...
eff2d4608d6857d18ec8acda661cdf106a9f32d0
valid
curve_fit_unscaled
Use the reduced chi square to unscale :mod:`scipy`'s scaled :func:`scipy.optimize.curve_fit`. *\*args* and *\*\*kwargs* are passed through to :func:`scipy.optimize.curve_fit`. The tuple *popt, pcov, chisq_red* is returned, where *popt* is the optimal values for the parameters, *pcov* is the estimated covariance of *pop...
scisalt/scipy/curve_fit_unscaled.py
def curve_fit_unscaled(*args, **kwargs): """ Use the reduced chi square to unscale :mod:`scipy`'s scaled :func:`scipy.optimize.curve_fit`. *\*args* and *\*\*kwargs* are passed through to :func:`scipy.optimize.curve_fit`. The tuple *popt, pcov, chisq_red* is returned, where *popt* is the optimal values for the p...
def curve_fit_unscaled(*args, **kwargs): """ Use the reduced chi square to unscale :mod:`scipy`'s scaled :func:`scipy.optimize.curve_fit`. *\*args* and *\*\*kwargs* are passed through to :func:`scipy.optimize.curve_fit`. The tuple *popt, pcov, chisq_red* is returned, where *popt* is the optimal values for the p...
[ "Use", "the", "reduced", "chi", "square", "to", "unscale", ":", "mod", ":", "scipy", "s", "scaled", ":", "func", ":", "scipy", ".", "optimize", ".", "curve_fit", ".", "*", "\\", "*", "args", "*", "and", "*", "\\", "*", "\\", "*", "kwargs", "*", "...
joelfrederico/SciSalt
python
https://github.com/joelfrederico/SciSalt/blob/7bf57c49c7dde0a8b0aa337fbd2fbd527ce7a67f/scisalt/scipy/curve_fit_unscaled.py#L9-L39
[ "def", "curve_fit_unscaled", "(", "*", "args", ",", "*", "*", "kwargs", ")", ":", "# Extract verbosity", "verbose", "=", "kwargs", ".", "pop", "(", "'verbose'", ",", "False", ")", "# Do initial fit", "popt", ",", "pcov", "=", "_spopt", ".", "curve_fit", "(...
7bf57c49c7dde0a8b0aa337fbd2fbd527ce7a67f
valid
fitimageslice
Fits a gaussian to a slice of an image *img* specified by *xslice* x-coordinates and *yslice* y-coordinates. *res_x* and *res_y* specify image resolution in x and y. *avg_e_func* is a function that returns the energy of the image as a function of x. It should have the form: *avg_e_func(x_1, x_2, h5file, res_y)* ...
scisalt/accelphys/fitimageslice.py
def fitimageslice(img, res_x, res_y, xslice, yslice, avg_e_func=None, h5file=None, plot=False): """ Fits a gaussian to a slice of an image *img* specified by *xslice* x-coordinates and *yslice* y-coordinates. *res_x* and *res_y* specify image resolution in x and y. *avg_e_func* is a function that returns the en...
def fitimageslice(img, res_x, res_y, xslice, yslice, avg_e_func=None, h5file=None, plot=False): """ Fits a gaussian to a slice of an image *img* specified by *xslice* x-coordinates and *yslice* y-coordinates. *res_x* and *res_y* specify image resolution in x and y. *avg_e_func* is a function that returns the en...
[ "Fits", "a", "gaussian", "to", "a", "slice", "of", "an", "image", "*", "img", "*", "specified", "by", "*", "xslice", "*", "x", "-", "coordinates", "and", "*", "yslice", "*", "y", "-", "coordinates", ".", "*", "res_x", "*", "and", "*", "res_y", "*",...
joelfrederico/SciSalt
python
https://github.com/joelfrederico/SciSalt/blob/7bf57c49c7dde0a8b0aa337fbd2fbd527ce7a67f/scisalt/accelphys/fitimageslice.py#L10-L96
[ "def", "fitimageslice", "(", "img", ",", "res_x", ",", "res_y", ",", "xslice", ",", "yslice", ",", "avg_e_func", "=", "None", ",", "h5file", "=", "None", ",", "plot", "=", "False", ")", ":", "# ======================================", "# Extract start and end va...
7bf57c49c7dde0a8b0aa337fbd2fbd527ce7a67f
valid
encode
:returns: a JSON-representation of the object
src/infi/gevent_utils/json_utils.py
def encode(python_object, indent=None, large_object=False): """:returns: a JSON-representation of the object""" # sorted keys is easier to read; however, Python-2.7.2 does not have this feature kwargs = dict(indent=indent) if can_dumps_sort_keys(): kwargs.update(sort_keys=True) try: ...
def encode(python_object, indent=None, large_object=False): """:returns: a JSON-representation of the object""" # sorted keys is easier to read; however, Python-2.7.2 does not have this feature kwargs = dict(indent=indent) if can_dumps_sort_keys(): kwargs.update(sort_keys=True) try: ...
[ ":", "returns", ":", "a", "JSON", "-", "representation", "of", "the", "object" ]
Infinidat/infi.gevent_utils
python
https://github.com/Infinidat/infi.gevent_utils/blob/7eb3c1601b8f2c9aaa3a83154ee7dfce8e5e5a5a/src/infi/gevent_utils/json_utils.py#L41-L56
[ "def", "encode", "(", "python_object", ",", "indent", "=", "None", ",", "large_object", "=", "False", ")", ":", "# sorted keys is easier to read; however, Python-2.7.2 does not have this feature", "kwargs", "=", "dict", "(", "indent", "=", "indent", ")", "if", "can_du...
7eb3c1601b8f2c9aaa3a83154ee7dfce8e5e5a5a
valid
SketchRunner.__register_library
Inserts Interpreter Library of imports into sketch in a very non-consensual way
sketches/__init__.py
def __register_library(self, module_name: str, attr: str, fallback: str = None): """Inserts Interpreter Library of imports into sketch in a very non-consensual way""" # Import the module Named in the string try: module = importlib.import_module(module_name) # If module is n...
def __register_library(self, module_name: str, attr: str, fallback: str = None): """Inserts Interpreter Library of imports into sketch in a very non-consensual way""" # Import the module Named in the string try: module = importlib.import_module(module_name) # If module is n...
[ "Inserts", "Interpreter", "Library", "of", "imports", "into", "sketch", "in", "a", "very", "non", "-", "consensual", "way" ]
IGBC/PySketch
python
https://github.com/IGBC/PySketch/blob/3b39410a85693b46704e75739e70301cfea33523/sketches/__init__.py#L44-L65
[ "def", "__register_library", "(", "self", ",", "module_name", ":", "str", ",", "attr", ":", "str", ",", "fallback", ":", "str", "=", "None", ")", ":", "# Import the module Named in the string", "try", ":", "module", "=", "importlib", ".", "import_module", "(",...
3b39410a85693b46704e75739e70301cfea33523
valid
EllipseBeam.set_moments
Sets the beam moments directly. Parameters ---------- sx : float Beam moment where :math:`\\text{sx}^2 = \\langle x^2 \\rangle`. sxp : float Beam moment where :math:`\\text{sxp}^2 = \\langle x'^2 \\rangle`. sxxp : float Beam moment where :math...
scisalt/PWFA/beam.py
def set_moments(self, sx, sxp, sxxp): """ Sets the beam moments directly. Parameters ---------- sx : float Beam moment where :math:`\\text{sx}^2 = \\langle x^2 \\rangle`. sxp : float Beam moment where :math:`\\text{sxp}^2 = \\langle x'^2 \\rangle`...
def set_moments(self, sx, sxp, sxxp): """ Sets the beam moments directly. Parameters ---------- sx : float Beam moment where :math:`\\text{sx}^2 = \\langle x^2 \\rangle`. sxp : float Beam moment where :math:`\\text{sxp}^2 = \\langle x'^2 \\rangle`...
[ "Sets", "the", "beam", "moments", "directly", "." ]
joelfrederico/SciSalt
python
https://github.com/joelfrederico/SciSalt/blob/7bf57c49c7dde0a8b0aa337fbd2fbd527ce7a67f/scisalt/PWFA/beam.py#L133-L150
[ "def", "set_moments", "(", "self", ",", "sx", ",", "sxp", ",", "sxxp", ")", ":", "self", ".", "_sx", "=", "sx", "self", ".", "_sxp", "=", "sxp", "self", ".", "_sxxp", "=", "sxxp", "emit", "=", "_np", ".", "sqrt", "(", "sx", "**", "2", "*", "s...
7bf57c49c7dde0a8b0aa337fbd2fbd527ce7a67f
valid
EllipseBeam.set_Courant_Snyder
Sets the beam moments indirectly using Courant-Snyder parameters. Parameters ---------- beta : float Courant-Snyder parameter :math:`\\beta`. alpha : float Courant-Snyder parameter :math:`\\alpha`. emit : float Beam emittance :math:`\\epsilon`...
scisalt/PWFA/beam.py
def set_Courant_Snyder(self, beta, alpha, emit=None, emit_n=None): """ Sets the beam moments indirectly using Courant-Snyder parameters. Parameters ---------- beta : float Courant-Snyder parameter :math:`\\beta`. alpha : float Courant-Snyder param...
def set_Courant_Snyder(self, beta, alpha, emit=None, emit_n=None): """ Sets the beam moments indirectly using Courant-Snyder parameters. Parameters ---------- beta : float Courant-Snyder parameter :math:`\\beta`. alpha : float Courant-Snyder param...
[ "Sets", "the", "beam", "moments", "indirectly", "using", "Courant", "-", "Snyder", "parameters", "." ]
joelfrederico/SciSalt
python
https://github.com/joelfrederico/SciSalt/blob/7bf57c49c7dde0a8b0aa337fbd2fbd527ce7a67f/scisalt/PWFA/beam.py#L173-L193
[ "def", "set_Courant_Snyder", "(", "self", ",", "beta", ",", "alpha", ",", "emit", "=", "None", ",", "emit_n", "=", "None", ")", ":", "self", ".", "_store_emit", "(", "emit", "=", "emit", ",", "emit_n", "=", "emit_n", ")", "self", ".", "_sx", "=", "...
7bf57c49c7dde0a8b0aa337fbd2fbd527ce7a67f
valid
EllipseBeam.beta
Courant-Snyder parameter :math:`\\beta`.
scisalt/PWFA/beam.py
def beta(self): """ Courant-Snyder parameter :math:`\\beta`. """ beta = _np.sqrt(self.sx)/self.emit return beta
def beta(self): """ Courant-Snyder parameter :math:`\\beta`. """ beta = _np.sqrt(self.sx)/self.emit return beta
[ "Courant", "-", "Snyder", "parameter", ":", "math", ":", "\\\\", "beta", "." ]
joelfrederico/SciSalt
python
https://github.com/joelfrederico/SciSalt/blob/7bf57c49c7dde0a8b0aa337fbd2fbd527ce7a67f/scisalt/PWFA/beam.py#L196-L201
[ "def", "beta", "(", "self", ")", ":", "beta", "=", "_np", ".", "sqrt", "(", "self", ".", "sx", ")", "/", "self", ".", "emit", "return", "beta" ]
7bf57c49c7dde0a8b0aa337fbd2fbd527ce7a67f
valid
normalize_slice
Given a slice object, return appropriate values for use in the range function :param slice_obj: The slice object or integer provided in the `[]` notation :param length: For negative indexing we need to know the max length of the object.
randomlineaccess/utils.py
def normalize_slice(slice_obj, length): """ Given a slice object, return appropriate values for use in the range function :param slice_obj: The slice object or integer provided in the `[]` notation :param length: For negative indexing we need to know the max length of the object. """ if isinsta...
def normalize_slice(slice_obj, length): """ Given a slice object, return appropriate values for use in the range function :param slice_obj: The slice object or integer provided in the `[]` notation :param length: For negative indexing we need to know the max length of the object. """ if isinsta...
[ "Given", "a", "slice", "object", "return", "appropriate", "values", "for", "use", "in", "the", "range", "function" ]
brycedrennan/random-line-access
python
https://github.com/brycedrennan/random-line-access/blob/ad46749252ffbe5885f2f001f5abb5a180939268/randomlineaccess/utils.py#L1-L36
[ "def", "normalize_slice", "(", "slice_obj", ",", "length", ")", ":", "if", "isinstance", "(", "slice_obj", ",", "slice", ")", ":", "start", ",", "stop", ",", "step", "=", "slice_obj", ".", "start", ",", "slice_obj", ".", "stop", ",", "slice_obj", ".", ...
ad46749252ffbe5885f2f001f5abb5a180939268
valid
BaseValidator.error
Helper to add error to messages field. It fills placeholder with extra call parameters or values from message_value map. :param error_code: Error code to use :rparam error_code: str :param value: Value checked :param kwargs: Map of values to use in placeholders
dirty_validators/basic.py
def error(self, error_code, value, **kwargs): """ Helper to add error to messages field. It fills placeholder with extra call parameters or values from message_value map. :param error_code: Error code to use :rparam error_code: str :param value: Value checked :pa...
def error(self, error_code, value, **kwargs): """ Helper to add error to messages field. It fills placeholder with extra call parameters or values from message_value map. :param error_code: Error code to use :rparam error_code: str :param value: Value checked :pa...
[ "Helper", "to", "add", "error", "to", "messages", "field", ".", "It", "fills", "placeholder", "with", "extra", "call", "parameters", "or", "values", "from", "message_value", "map", "." ]
alfred82santa/dirty-validators
python
https://github.com/alfred82santa/dirty-validators/blob/95af84fb8e6452c8a6d88af496cbdb31bca7a608/dirty_validators/basic.py#L73-L94
[ "def", "error", "(", "self", ",", "error_code", ",", "value", ",", "*", "*", "kwargs", ")", ":", "code", "=", "self", ".", "error_code_map", ".", "get", "(", "error_code", ",", "error_code", ")", "try", ":", "message", "=", "Template", "(", "self", "...
95af84fb8e6452c8a6d88af496cbdb31bca7a608
valid
copy
File copy that support compress and decompress of zip files
lrcloud/util.py
def copy(src, dst): """File copy that support compress and decompress of zip files""" (szip, dzip) = (src.endswith(".zip"), dst.endswith(".zip")) logging.info("Copy: %s => %s"%(src, dst)) if szip and dzip:#If both zipped, we can simply use copy shutil.copy2(src, dst) elif szip: wit...
def copy(src, dst): """File copy that support compress and decompress of zip files""" (szip, dzip) = (src.endswith(".zip"), dst.endswith(".zip")) logging.info("Copy: %s => %s"%(src, dst)) if szip and dzip:#If both zipped, we can simply use copy shutil.copy2(src, dst) elif szip: wit...
[ "File", "copy", "that", "support", "compress", "and", "decompress", "of", "zip", "files" ]
madsbk/lrcloud
python
https://github.com/madsbk/lrcloud/blob/8d99be3e1abdf941642e9a1c86b7d775dc373c0b/lrcloud/util.py#L16-L44
[ "def", "copy", "(", "src", ",", "dst", ")", ":", "(", "szip", ",", "dzip", ")", "=", "(", "src", ".", "endswith", "(", "\".zip\"", ")", ",", "dst", ".", "endswith", "(", "\".zip\"", ")", ")", "logging", ".", "info", "(", "\"Copy: %s => %s\"", "%", ...
8d99be3e1abdf941642e9a1c86b7d775dc373c0b
valid
apply_changesets
Apply to the 'catalog' the changesets in the metafile list 'changesets
lrcloud/util.py
def apply_changesets(args, changesets, catalog): """Apply to the 'catalog' the changesets in the metafile list 'changesets'""" tmpdir = tempfile.mkdtemp() tmp_patch = join(tmpdir, "tmp.patch") tmp_lcat = join(tmpdir, "tmp.lcat") for node in changesets: remove(tmp_patch) copy(node....
def apply_changesets(args, changesets, catalog): """Apply to the 'catalog' the changesets in the metafile list 'changesets'""" tmpdir = tempfile.mkdtemp() tmp_patch = join(tmpdir, "tmp.patch") tmp_lcat = join(tmpdir, "tmp.lcat") for node in changesets: remove(tmp_patch) copy(node....
[ "Apply", "to", "the", "catalog", "the", "changesets", "in", "the", "metafile", "list", "changesets" ]
madsbk/lrcloud
python
https://github.com/madsbk/lrcloud/blob/8d99be3e1abdf941642e9a1c86b7d775dc373c0b/lrcloud/util.py#L56-L75
[ "def", "apply_changesets", "(", "args", ",", "changesets", ",", "catalog", ")", ":", "tmpdir", "=", "tempfile", ".", "mkdtemp", "(", ")", "tmp_patch", "=", "join", "(", "tmpdir", ",", "\"tmp.patch\"", ")", "tmp_lcat", "=", "join", "(", "tmpdir", ",", "\"...
8d99be3e1abdf941642e9a1c86b7d775dc373c0b
valid
AddEventForm.clean
Validate that an event with this name on this date does not exist.
build/lib/happenings/forms.py
def clean(self): """ Validate that an event with this name on this date does not exist. """ cleaned = super(EventForm, self).clean() if Event.objects.filter(name=cleaned['name'], start_date=cleaned['start_date']).count(): raise forms.ValidationError(u'This event appea...
def clean(self): """ Validate that an event with this name on this date does not exist. """ cleaned = super(EventForm, self).clean() if Event.objects.filter(name=cleaned['name'], start_date=cleaned['start_date']).count(): raise forms.ValidationError(u'This event appea...
[ "Validate", "that", "an", "event", "with", "this", "name", "on", "this", "date", "does", "not", "exist", "." ]
tBaxter/tango-happenings
python
https://github.com/tBaxter/tango-happenings/blob/cb3c49ea39e0a6cef9c6ffb534c2fbf401139ba2/build/lib/happenings/forms.py#L37-L44
[ "def", "clean", "(", "self", ")", ":", "cleaned", "=", "super", "(", "EventForm", ",", "self", ")", ".", "clean", "(", ")", "if", "Event", ".", "objects", ".", "filter", "(", "name", "=", "cleaned", "[", "'name'", "]", ",", "start_date", "=", "clea...
cb3c49ea39e0a6cef9c6ffb534c2fbf401139ba2
valid
loop_in_background
When entering the context, spawns a greenlet that sleeps for `interval` seconds between `callback` executions. When leaving the context stops the greenlet. The yielded object is the `GeventLoop` object so the loop can be stopped from within the context. For example: ``` with loop_in_background(60.0...
src/infi/gevent_utils/gevent_loop.py
def loop_in_background(interval, callback): """ When entering the context, spawns a greenlet that sleeps for `interval` seconds between `callback` executions. When leaving the context stops the greenlet. The yielded object is the `GeventLoop` object so the loop can be stopped from within the context. ...
def loop_in_background(interval, callback): """ When entering the context, spawns a greenlet that sleeps for `interval` seconds between `callback` executions. When leaving the context stops the greenlet. The yielded object is the `GeventLoop` object so the loop can be stopped from within the context. ...
[ "When", "entering", "the", "context", "spawns", "a", "greenlet", "that", "sleeps", "for", "interval", "seconds", "between", "callback", "executions", ".", "When", "leaving", "the", "context", "stops", "the", "greenlet", ".", "The", "yielded", "object", "is", "...
Infinidat/infi.gevent_utils
python
https://github.com/Infinidat/infi.gevent_utils/blob/7eb3c1601b8f2c9aaa3a83154ee7dfce8e5e5a5a/src/infi/gevent_utils/gevent_loop.py#L101-L122
[ "def", "loop_in_background", "(", "interval", ",", "callback", ")", ":", "loop", "=", "GeventLoop", "(", "interval", ",", "callback", ")", "loop", ".", "start", "(", ")", "try", ":", "yield", "loop", "finally", ":", "if", "loop", ".", "has_started", "(",...
7eb3c1601b8f2c9aaa3a83154ee7dfce8e5e5a5a
valid
GeventLoopBase._loop
Main loop - used internally.
src/infi/gevent_utils/gevent_loop.py
def _loop(self): """Main loop - used internally.""" while True: try: with uncaught_greenlet_exception_context(): self._loop_callback() except gevent.GreenletExit: break if self._stop_event.wait(self._interval): ...
def _loop(self): """Main loop - used internally.""" while True: try: with uncaught_greenlet_exception_context(): self._loop_callback() except gevent.GreenletExit: break if self._stop_event.wait(self._interval): ...
[ "Main", "loop", "-", "used", "internally", "." ]
Infinidat/infi.gevent_utils
python
https://github.com/Infinidat/infi.gevent_utils/blob/7eb3c1601b8f2c9aaa3a83154ee7dfce8e5e5a5a/src/infi/gevent_utils/gevent_loop.py#L16-L26
[ "def", "_loop", "(", "self", ")", ":", "while", "True", ":", "try", ":", "with", "uncaught_greenlet_exception_context", "(", ")", ":", "self", ".", "_loop_callback", "(", ")", "except", "gevent", ".", "GreenletExit", ":", "break", "if", "self", ".", "_stop...
7eb3c1601b8f2c9aaa3a83154ee7dfce8e5e5a5a
valid
GeventLoopBase.start
Starts the loop. Calling a running loop is an error.
src/infi/gevent_utils/gevent_loop.py
def start(self): """ Starts the loop. Calling a running loop is an error. """ assert not self.has_started(), "called start() on an active GeventLoop" self._stop_event = Event() # note that we don't use safe_greenlets.spawn because we take care of it in _loop by ourselves ...
def start(self): """ Starts the loop. Calling a running loop is an error. """ assert not self.has_started(), "called start() on an active GeventLoop" self._stop_event = Event() # note that we don't use safe_greenlets.spawn because we take care of it in _loop by ourselves ...
[ "Starts", "the", "loop", ".", "Calling", "a", "running", "loop", "is", "an", "error", "." ]
Infinidat/infi.gevent_utils
python
https://github.com/Infinidat/infi.gevent_utils/blob/7eb3c1601b8f2c9aaa3a83154ee7dfce8e5e5a5a/src/infi/gevent_utils/gevent_loop.py#L32-L39
[ "def", "start", "(", "self", ")", ":", "assert", "not", "self", ".", "has_started", "(", ")", ",", "\"called start() on an active GeventLoop\"", "self", ".", "_stop_event", "=", "Event", "(", ")", "# note that we don't use safe_greenlets.spawn because we take care of it i...
7eb3c1601b8f2c9aaa3a83154ee7dfce8e5e5a5a
valid
GeventLoopBase.stop
Stops a running loop and waits for it to end if timeout is set. Calling a non-running loop is an error. :param timeout: time (in seconds) to wait for the loop to end after signalling it. ``None`` is to block till it ends. :return: True if the loop stopped, False if still stopping.
src/infi/gevent_utils/gevent_loop.py
def stop(self, timeout=None): """ Stops a running loop and waits for it to end if timeout is set. Calling a non-running loop is an error. :param timeout: time (in seconds) to wait for the loop to end after signalling it. ``None`` is to block till it ends. :return: True if the loo...
def stop(self, timeout=None): """ Stops a running loop and waits for it to end if timeout is set. Calling a non-running loop is an error. :param timeout: time (in seconds) to wait for the loop to end after signalling it. ``None`` is to block till it ends. :return: True if the loo...
[ "Stops", "a", "running", "loop", "and", "waits", "for", "it", "to", "end", "if", "timeout", "is", "set", ".", "Calling", "a", "non", "-", "running", "loop", "is", "an", "error", ".", ":", "param", "timeout", ":", "time", "(", "in", "seconds", ")", ...
Infinidat/infi.gevent_utils
python
https://github.com/Infinidat/infi.gevent_utils/blob/7eb3c1601b8f2c9aaa3a83154ee7dfce8e5e5a5a/src/infi/gevent_utils/gevent_loop.py#L41-L55
[ "def", "stop", "(", "self", ",", "timeout", "=", "None", ")", ":", "assert", "self", ".", "has_started", "(", ")", ",", "\"called stop() on a non-active GeventLoop\"", "greenlet", "=", "self", ".", "_greenlet", "if", "gevent", ".", "getcurrent", "(", ")", "!...
7eb3c1601b8f2c9aaa3a83154ee7dfce8e5e5a5a
valid
GeventLoopBase.kill
Kills the running loop and waits till it gets killed.
src/infi/gevent_utils/gevent_loop.py
def kill(self): """Kills the running loop and waits till it gets killed.""" assert self.has_started(), "called kill() on a non-active GeventLoop" self._stop_event.set() self._greenlet.kill() self._clear()
def kill(self): """Kills the running loop and waits till it gets killed.""" assert self.has_started(), "called kill() on a non-active GeventLoop" self._stop_event.set() self._greenlet.kill() self._clear()
[ "Kills", "the", "running", "loop", "and", "waits", "till", "it", "gets", "killed", "." ]
Infinidat/infi.gevent_utils
python
https://github.com/Infinidat/infi.gevent_utils/blob/7eb3c1601b8f2c9aaa3a83154ee7dfce8e5e5a5a/src/infi/gevent_utils/gevent_loop.py#L57-L62
[ "def", "kill", "(", "self", ")", ":", "assert", "self", ".", "has_started", "(", ")", ",", "\"called kill() on a non-active GeventLoop\"", "self", ".", "_stop_event", ".", "set", "(", ")", "self", ".", "_greenlet", ".", "kill", "(", ")", "self", ".", "_cle...
7eb3c1601b8f2c9aaa3a83154ee7dfce8e5e5a5a
valid
NonUniformImage
Used to plot a set of coordinates. Parameters ---------- x, y : :class:`numpy.ndarray` 1-D ndarrays of lengths N and M, respectively, specifying pixel centers z : :class:`numpy.ndarray` An (M, N) ndarray or masked array of values to be colormapped, or a (M, N, 3) RGB array, or a (M, N,...
scisalt/matplotlib/NonUniformImage.py
def NonUniformImage(x, y, z, ax=None, fig=None, cmap=None, alpha=None, scalex=True, scaley=True, add_cbar=True, **kwargs): """ Used to plot a set of coordinates. Parameters ---------- x, y : :class:`numpy.ndarray` 1-D ndarrays of lengths N and M, respectively, specifying pixel centers ...
def NonUniformImage(x, y, z, ax=None, fig=None, cmap=None, alpha=None, scalex=True, scaley=True, add_cbar=True, **kwargs): """ Used to plot a set of coordinates. Parameters ---------- x, y : :class:`numpy.ndarray` 1-D ndarrays of lengths N and M, respectively, specifying pixel centers ...
[ "Used", "to", "plot", "a", "set", "of", "coordinates", "." ]
joelfrederico/SciSalt
python
https://github.com/joelfrederico/SciSalt/blob/7bf57c49c7dde0a8b0aa337fbd2fbd527ce7a67f/scisalt/matplotlib/NonUniformImage.py#L13-L84
[ "def", "NonUniformImage", "(", "x", ",", "y", ",", "z", ",", "ax", "=", "None", ",", "fig", "=", "None", ",", "cmap", "=", "None", ",", "alpha", "=", "None", ",", "scalex", "=", "True", ",", "scaley", "=", "True", ",", "add_cbar", "=", "True", ...
7bf57c49c7dde0a8b0aa337fbd2fbd527ce7a67f
valid
LatexFixer._sentence_to_interstitial_spacing
Fix common spacing errors caused by LaTeX's habit of using an inter-sentence space after any full stop.
latexfixer/fix.py
def _sentence_to_interstitial_spacing(self): """Fix common spacing errors caused by LaTeX's habit of using an inter-sentence space after any full stop.""" not_sentence_end_chars = [' '] abbreviations = ['i.e.', 'e.g.', ' v.', ' w.', ' wh.'] titles = ['Prof.', 'Mr.', ...
def _sentence_to_interstitial_spacing(self): """Fix common spacing errors caused by LaTeX's habit of using an inter-sentence space after any full stop.""" not_sentence_end_chars = [' '] abbreviations = ['i.e.', 'e.g.', ' v.', ' w.', ' wh.'] titles = ['Prof.', 'Mr.', ...
[ "Fix", "common", "spacing", "errors", "caused", "by", "LaTeX", "s", "habit", "of", "using", "an", "inter", "-", "sentence", "space", "after", "any", "full", "stop", "." ]
fizzbucket/latexfixer
python
https://github.com/fizzbucket/latexfixer/blob/1b127e866fbca9764e638fb05fdd43da9dd1a97b/latexfixer/fix.py#L26-L46
[ "def", "_sentence_to_interstitial_spacing", "(", "self", ")", ":", "not_sentence_end_chars", "=", "[", "' '", "]", "abbreviations", "=", "[", "'i.e.'", ",", "'e.g.'", ",", "' v.'", ",", "' w.'", ",", "' wh.'", "]", "titles", "=", "[", "'Prof.'", ",", "'Mr.'"...
1b127e866fbca9764e638fb05fdd43da9dd1a97b
valid
LatexFixer._hyphens_to_dashes
Transform hyphens to various kinds of dashes
latexfixer/fix.py
def _hyphens_to_dashes(self): """Transform hyphens to various kinds of dashes""" problematic_hyphens = [(r'-([.,!)])', r'---\1'), (r'(?<=\d)-(?=\d)', '--'), (r'(?<=\s)-(?=\s)', '---')] for problem_case in problematic_hyphens: self._...
def _hyphens_to_dashes(self): """Transform hyphens to various kinds of dashes""" problematic_hyphens = [(r'-([.,!)])', r'---\1'), (r'(?<=\d)-(?=\d)', '--'), (r'(?<=\s)-(?=\s)', '---')] for problem_case in problematic_hyphens: self._...
[ "Transform", "hyphens", "to", "various", "kinds", "of", "dashes" ]
fizzbucket/latexfixer
python
https://github.com/fizzbucket/latexfixer/blob/1b127e866fbca9764e638fb05fdd43da9dd1a97b/latexfixer/fix.py#L64-L72
[ "def", "_hyphens_to_dashes", "(", "self", ")", ":", "problematic_hyphens", "=", "[", "(", "r'-([.,!)])'", ",", "r'---\\1'", ")", ",", "(", "r'(?<=\\d)-(?=\\d)'", ",", "'--'", ")", ",", "(", "r'(?<=\\s)-(?=\\s)'", ",", "'---'", ")", "]", "for", "problem_case", ...
1b127e866fbca9764e638fb05fdd43da9dd1a97b
valid
LatexFixer._str_replacement
Replace target with replacement
latexfixer/fix.py
def _str_replacement(self, target, replacement): """Replace target with replacement""" self.data = self.data.replace(target, replacement)
def _str_replacement(self, target, replacement): """Replace target with replacement""" self.data = self.data.replace(target, replacement)
[ "Replace", "target", "with", "replacement" ]
fizzbucket/latexfixer
python
https://github.com/fizzbucket/latexfixer/blob/1b127e866fbca9764e638fb05fdd43da9dd1a97b/latexfixer/fix.py#L75-L77
[ "def", "_str_replacement", "(", "self", ",", "target", ",", "replacement", ")", ":", "self", ".", "data", "=", "self", ".", "data", ".", "replace", "(", "target", ",", "replacement", ")" ]
1b127e866fbca9764e638fb05fdd43da9dd1a97b
valid
LatexFixer._regex_replacement
Regex substitute target with replacement
latexfixer/fix.py
def _regex_replacement(self, target, replacement): """Regex substitute target with replacement""" match = re.compile(target) self.data = match.sub(replacement, self.data)
def _regex_replacement(self, target, replacement): """Regex substitute target with replacement""" match = re.compile(target) self.data = match.sub(replacement, self.data)
[ "Regex", "substitute", "target", "with", "replacement" ]
fizzbucket/latexfixer
python
https://github.com/fizzbucket/latexfixer/blob/1b127e866fbca9764e638fb05fdd43da9dd1a97b/latexfixer/fix.py#L79-L82
[ "def", "_regex_replacement", "(", "self", ",", "target", ",", "replacement", ")", ":", "match", "=", "re", ".", "compile", "(", "target", ")", "self", ".", "data", "=", "match", ".", "sub", "(", "replacement", ",", "self", ".", "data", ")" ]
1b127e866fbca9764e638fb05fdd43da9dd1a97b
valid
sphinx_make
Call the Sphinx Makefile with the specified targets. `options.paved.docs.path`: the path to the Sphinx folder (where the Makefile resides).
paved/docs.py
def sphinx_make(*targets): """Call the Sphinx Makefile with the specified targets. `options.paved.docs.path`: the path to the Sphinx folder (where the Makefile resides). """ sh('make %s' % ' '.join(targets), cwd=options.paved.docs.path)
def sphinx_make(*targets): """Call the Sphinx Makefile with the specified targets. `options.paved.docs.path`: the path to the Sphinx folder (where the Makefile resides). """ sh('make %s' % ' '.join(targets), cwd=options.paved.docs.path)
[ "Call", "the", "Sphinx", "Makefile", "with", "the", "specified", "targets", "." ]
eykd/paved
python
https://github.com/eykd/paved/blob/f04f8a4248c571f3d5ce882b325884a3e5d80203/paved/docs.py#L24-L29
[ "def", "sphinx_make", "(", "*", "targets", ")", ":", "sh", "(", "'make %s'", "%", "' '", ".", "join", "(", "targets", ")", ",", "cwd", "=", "options", ".", "paved", ".", "docs", ".", "path", ")" ]
f04f8a4248c571f3d5ce882b325884a3e5d80203
valid
rsync_docs
Upload the docs to a remote location via rsync. `options.paved.docs.rsync_location`: the target location to rsync files to. `options.paved.docs.path`: the path to the Sphinx folder (where the Makefile resides). `options.paved.docs.build_rel`: the path of the documentation build folder, relative t...
paved/docs.py
def rsync_docs(): """Upload the docs to a remote location via rsync. `options.paved.docs.rsync_location`: the target location to rsync files to. `options.paved.docs.path`: the path to the Sphinx folder (where the Makefile resides). `options.paved.docs.build_rel`: the path of the documentation ...
def rsync_docs(): """Upload the docs to a remote location via rsync. `options.paved.docs.rsync_location`: the target location to rsync files to. `options.paved.docs.path`: the path to the Sphinx folder (where the Makefile resides). `options.paved.docs.build_rel`: the path of the documentation ...
[ "Upload", "the", "docs", "to", "a", "remote", "location", "via", "rsync", "." ]
eykd/paved
python
https://github.com/eykd/paved/blob/f04f8a4248c571f3d5ce882b325884a3e5d80203/paved/docs.py#L54-L66
[ "def", "rsync_docs", "(", ")", ":", "assert", "options", ".", "paved", ".", "docs", ".", "rsync_location", ",", "\"Please specify an rsync location in options.paved.docs.rsync_location.\"", "sh", "(", "'rsync -ravz %s/ %s/'", "%", "(", "path", "(", "options", ".", "pa...
f04f8a4248c571f3d5ce882b325884a3e5d80203
valid
ghpages
Push Sphinx docs to github_ gh-pages branch. 1. Create file .nojekyll 2. Push the branch to origin/gh-pages after committing using ghp-import_ Requirements: - easy_install ghp-import Options: - `options.paved.docs.*` is not used - `options.sphinx.docroot` is used (default=doc...
paved/docs.py
def ghpages(): '''Push Sphinx docs to github_ gh-pages branch. 1. Create file .nojekyll 2. Push the branch to origin/gh-pages after committing using ghp-import_ Requirements: - easy_install ghp-import Options: - `options.paved.docs.*` is not used - `options.sphinx.docroot...
def ghpages(): '''Push Sphinx docs to github_ gh-pages branch. 1. Create file .nojekyll 2. Push the branch to origin/gh-pages after committing using ghp-import_ Requirements: - easy_install ghp-import Options: - `options.paved.docs.*` is not used - `options.sphinx.docroot...
[ "Push", "Sphinx", "docs", "to", "github_", "gh", "-", "pages", "branch", "." ]
eykd/paved
python
https://github.com/eykd/paved/blob/f04f8a4248c571f3d5ce882b325884a3e5d80203/paved/docs.py#L69-L114
[ "def", "ghpages", "(", ")", ":", "# copy from paver", "opts", "=", "options", "docroot", "=", "path", "(", "opts", ".", "get", "(", "'docroot'", ",", "'docs'", ")", ")", "if", "not", "docroot", ".", "exists", "(", ")", ":", "raise", "BuildFailure", "("...
f04f8a4248c571f3d5ce882b325884a3e5d80203
valid
showhtml
Open your web browser and display the generated html documentation.
paved/docs.py
def showhtml(): """Open your web browser and display the generated html documentation. """ import webbrowser # copy from paver opts = options docroot = path(opts.get('docroot', 'docs')) if not docroot.exists(): raise BuildFailure("Sphinx documentation root (%s) does not exist." ...
def showhtml(): """Open your web browser and display the generated html documentation. """ import webbrowser # copy from paver opts = options docroot = path(opts.get('docroot', 'docs')) if not docroot.exists(): raise BuildFailure("Sphinx documentation root (%s) does not exist." ...
[ "Open", "your", "web", "browser", "and", "display", "the", "generated", "html", "documentation", "." ]
eykd/paved
python
https://github.com/eykd/paved/blob/f04f8a4248c571f3d5ce882b325884a3e5d80203/paved/docs.py#L119-L138
[ "def", "showhtml", "(", ")", ":", "import", "webbrowser", "# copy from paver", "opts", "=", "options", "docroot", "=", "path", "(", "opts", ".", "get", "(", "'docroot'", ",", "'docs'", ")", ")", "if", "not", "docroot", ".", "exists", "(", ")", ":", "ra...
f04f8a4248c571f3d5ce882b325884a3e5d80203
valid
setup_figure
Sets up a figure with a number of rows (*rows*) and columns (*cols*), *\*\*kwargs* passes through to :class:`matplotlib.figure.Figure`. .. versionchanged:: 1.3 Supports *\*\*kwargs* pass-through to :class:`matplotlib.figure.Figure`. .. versionchanged:: 1.2 Changed *gridspec_x* to *rows*, ...
scisalt/matplotlib/setup_figure.py
def setup_figure(rows=1, cols=1, **kwargs): """ Sets up a figure with a number of rows (*rows*) and columns (*cols*), *\*\*kwargs* passes through to :class:`matplotlib.figure.Figure`. .. versionchanged:: 1.3 Supports *\*\*kwargs* pass-through to :class:`matplotlib.figure.Figure`. .. vers...
def setup_figure(rows=1, cols=1, **kwargs): """ Sets up a figure with a number of rows (*rows*) and columns (*cols*), *\*\*kwargs* passes through to :class:`matplotlib.figure.Figure`. .. versionchanged:: 1.3 Supports *\*\*kwargs* pass-through to :class:`matplotlib.figure.Figure`. .. vers...
[ "Sets", "up", "a", "figure", "with", "a", "number", "of", "rows", "(", "*", "rows", "*", ")", "and", "columns", "(", "*", "cols", "*", ")", "*", "\\", "*", "\\", "*", "kwargs", "*", "passes", "through", "to", ":", "class", ":", "matplotlib", ".",...
joelfrederico/SciSalt
python
https://github.com/joelfrederico/SciSalt/blob/7bf57c49c7dde0a8b0aa337fbd2fbd527ce7a67f/scisalt/matplotlib/setup_figure.py#L8-L37
[ "def", "setup_figure", "(", "rows", "=", "1", ",", "cols", "=", "1", ",", "*", "*", "kwargs", ")", ":", "fig", "=", "_plt", ".", "figure", "(", "*", "*", "kwargs", ")", "gs", "=", "_gridspec", ".", "GridSpec", "(", "rows", ",", "cols", ")", "re...
7bf57c49c7dde0a8b0aa337fbd2fbd527ce7a67f
valid
GameController.guess
guess() allows a guess to be made. Before the guess is made, the method checks to see if the game has been won, lost, or there are no tries remaining. It then creates a return object stating the number of bulls (direct matches), cows (indirect matches), an analysis of the guess (a list o...
python_cowbull_game/v2_deprecated/GameController.py
def guess(self, *args): self._validate() """ guess() allows a guess to be made. Before the guess is made, the method checks to see if the game has been won, lost, or there are no tries remaining. It then creates a return object stating the number of bulls (direct matches)...
def guess(self, *args): self._validate() """ guess() allows a guess to be made. Before the guess is made, the method checks to see if the game has been won, lost, or there are no tries remaining. It then creates a return object stating the number of bulls (direct matches)...
[ "guess", "()", "allows", "a", "guess", "to", "be", "made", ".", "Before", "the", "guess", "is", "made", "the", "method", "checks", "to", "see", "if", "the", "game", "has", "been", "won", "lost", "or", "there", "are", "no", "tries", "remaining", ".", ...
dsandersAzure/python_cowbull_game
python
https://github.com/dsandersAzure/python_cowbull_game/blob/82a0d8ee127869123d4fad51a8cd1707879e368f/python_cowbull_game/v2_deprecated/GameController.py#L173-L261
[ "def", "guess", "(", "self", ",", "*", "args", ")", ":", "self", ".", "_validate", "(", ")", "logging", ".", "debug", "(", "\"guess called.\"", ")", "logging", ".", "debug", "(", "\"Validating game object\"", ")", "self", ".", "_validate", "(", "op", "="...
82a0d8ee127869123d4fad51a8cd1707879e368f
valid
GameController._start_again
Simple method to form a start again message and give the answer in readable form.
python_cowbull_game/v2_deprecated/GameController.py
def _start_again(self, message=None): """Simple method to form a start again message and give the answer in readable form.""" logging.debug("Start again message delivered: {}".format(message)) the_answer = self._game.answer_str return "{0} The correct answer was {1}. Please start a new ...
def _start_again(self, message=None): """Simple method to form a start again message and give the answer in readable form.""" logging.debug("Start again message delivered: {}".format(message)) the_answer = self._game.answer_str return "{0} The correct answer was {1}. Please start a new ...
[ "Simple", "method", "to", "form", "a", "start", "again", "message", "and", "give", "the", "answer", "in", "readable", "form", "." ]
dsandersAzure/python_cowbull_game
python
https://github.com/dsandersAzure/python_cowbull_game/blob/82a0d8ee127869123d4fad51a8cd1707879e368f/python_cowbull_game/v2_deprecated/GameController.py#L266-L274
[ "def", "_start_again", "(", "self", ",", "message", "=", "None", ")", ":", "logging", ".", "debug", "(", "\"Start again message delivered: {}\"", ".", "format", "(", "message", ")", ")", "the_answer", "=", "self", ".", "_game", ".", "answer_str", "return", "...
82a0d8ee127869123d4fad51a8cd1707879e368f
valid
attachments
Parse the copy inside ``value`` and look for shortcodes in this format:: <p>Here's an attachment</p> <p>[attachment 1]</p> Replace the shortcode with a full image, video or audio element, or download link :param obj: The object against which attachments are saved :param width:...
bambu_attachments/templatetags/attachments.py
def attachments(value, obj, width = WIDTH): """ Parse the copy inside ``value`` and look for shortcodes in this format:: <p>Here's an attachment</p> <p>[attachment 1]</p> Replace the shortcode with a full image, video or audio element, or download link :param obj: The obje...
def attachments(value, obj, width = WIDTH): """ Parse the copy inside ``value`` and look for shortcodes in this format:: <p>Here's an attachment</p> <p>[attachment 1]</p> Replace the shortcode with a full image, video or audio element, or download link :param obj: The obje...
[ "Parse", "the", "copy", "inside", "value", "and", "look", "for", "shortcodes", "in", "this", "format", "::", "<p", ">", "Here", "s", "an", "attachment<", "/", "p", ">", "<p", ">", "[", "attachment", "1", "]", "<", "/", "p", ">", "Replace", "the", "...
iamsteadman/bambu-attachments
python
https://github.com/iamsteadman/bambu-attachments/blob/cc846dc8545c0b1795afff5d41f2f3def56b6603/bambu_attachments/templatetags/attachments.py#L14-L82
[ "def", "attachments", "(", "value", ",", "obj", ",", "width", "=", "WIDTH", ")", ":", "match", "=", "ATTACHMENT_REGEX", ".", "search", "(", "value", ")", "safe", "=", "isinstance", "(", "value", ",", "(", "SafeString", ",", "SafeUnicode", ")", ")", "wh...
cc846dc8545c0b1795afff5d41f2f3def56b6603
valid
CssMinifier.minify
Tries to minimize the length of CSS code passed as parameter. Returns string.
compressor/minifier/css.py
def minify(self, css): """Tries to minimize the length of CSS code passed as parameter. Returns string.""" css = css.replace("\r\n", "\n") # get rid of Windows line endings, if they exist for rule in _REPLACERS[self.level]: css = re.compile(rule[0], re.MULTILINE|re.UNICODE|re.DOTALL).sub(rul...
def minify(self, css): """Tries to minimize the length of CSS code passed as parameter. Returns string.""" css = css.replace("\r\n", "\n") # get rid of Windows line endings, if they exist for rule in _REPLACERS[self.level]: css = re.compile(rule[0], re.MULTILINE|re.UNICODE|re.DOTALL).sub(rul...
[ "Tries", "to", "minimize", "the", "length", "of", "CSS", "code", "passed", "as", "parameter", ".", "Returns", "string", "." ]
marcelnicolay/pycompressor
python
https://github.com/marcelnicolay/pycompressor/blob/ded6b16c58c9f2a7446014b171fd409a22b561e4/compressor/minifier/css.py#L40-L45
[ "def", "minify", "(", "self", ",", "css", ")", ":", "css", "=", "css", ".", "replace", "(", "\"\\r\\n\"", ",", "\"\\n\"", ")", "# get rid of Windows line endings, if they exist", "for", "rule", "in", "_REPLACERS", "[", "self", ".", "level", "]", ":", "css", ...
ded6b16c58c9f2a7446014b171fd409a22b561e4
valid
colorbar
Adds a polite colorbar that steals space so :func:`matplotlib.pyplot.tight_layout` works nicely. .. versionadded:: 1.3 Parameters ---------- ax : :class:`matplotlib.axis.Axis` The axis to plot to. im : :class:`matplotlib.image.AxesImage` The plotted image to use for the colorbar. ...
scisalt/matplotlib/colorbar.py
def colorbar(ax, im, fig=None, loc="right", size="5%", pad="3%"): """ Adds a polite colorbar that steals space so :func:`matplotlib.pyplot.tight_layout` works nicely. .. versionadded:: 1.3 Parameters ---------- ax : :class:`matplotlib.axis.Axis` The axis to plot to. im : :class:`m...
def colorbar(ax, im, fig=None, loc="right", size="5%", pad="3%"): """ Adds a polite colorbar that steals space so :func:`matplotlib.pyplot.tight_layout` works nicely. .. versionadded:: 1.3 Parameters ---------- ax : :class:`matplotlib.axis.Axis` The axis to plot to. im : :class:`m...
[ "Adds", "a", "polite", "colorbar", "that", "steals", "space", "so", ":", "func", ":", "matplotlib", ".", "pyplot", ".", "tight_layout", "works", "nicely", "." ]
joelfrederico/SciSalt
python
https://github.com/joelfrederico/SciSalt/blob/7bf57c49c7dde0a8b0aa337fbd2fbd527ce7a67f/scisalt/matplotlib/colorbar.py#L13-L53
[ "def", "colorbar", "(", "ax", ",", "im", ",", "fig", "=", "None", ",", "loc", "=", "\"right\"", ",", "size", "=", "\"5%\"", ",", "pad", "=", "\"3%\"", ")", ":", "if", "fig", "is", "None", ":", "fig", "=", "ax", ".", "get_figure", "(", ")", "# _...
7bf57c49c7dde0a8b0aa337fbd2fbd527ce7a67f
valid
BDES2K
Converts a quadrupole :math:`B_des` into a geometric focusing strength :math:`K`. Parameters ---------- bdes : float The magnet value of :math:`B_des`. quad_length : float The length of the quadrupole in meters. energy : float The design energy of the beam in GeV. Retu...
scisalt/accelphys/BDES2K.py
def BDES2K(bdes, quad_length, energy): """ Converts a quadrupole :math:`B_des` into a geometric focusing strength :math:`K`. Parameters ---------- bdes : float The magnet value of :math:`B_des`. quad_length : float The length of the quadrupole in meters. energy : float ...
def BDES2K(bdes, quad_length, energy): """ Converts a quadrupole :math:`B_des` into a geometric focusing strength :math:`K`. Parameters ---------- bdes : float The magnet value of :math:`B_des`. quad_length : float The length of the quadrupole in meters. energy : float ...
[ "Converts", "a", "quadrupole", ":", "math", ":", "B_des", "into", "a", "geometric", "focusing", "strength", ":", "math", ":", "K", "." ]
joelfrederico/SciSalt
python
https://github.com/joelfrederico/SciSalt/blob/7bf57c49c7dde0a8b0aa337fbd2fbd527ce7a67f/scisalt/accelphys/BDES2K.py#L13-L47
[ "def", "BDES2K", "(", "bdes", ",", "quad_length", ",", "energy", ")", ":", "# Make sure everything is float", "bdes", "=", "_np", ".", "float_", "(", "bdes", ")", "quad_length", "=", "_np", ".", "float_", "(", "quad_length", ")", "energy", "=", "_np", ".",...
7bf57c49c7dde0a8b0aa337fbd2fbd527ce7a67f
valid
IndexedOpen.get_or_create_index
Return an open file-object to the index file
randomlineaccess/index.py
def get_or_create_index(self, index_ratio, index_width): """Return an open file-object to the index file""" if not self.index_path.exists() or not self.filepath.stat().st_mtime == self.index_path.stat().st_mtime: create_index(self.filepath, self.index_path, index_ratio=index_ratio, index_wid...
def get_or_create_index(self, index_ratio, index_width): """Return an open file-object to the index file""" if not self.index_path.exists() or not self.filepath.stat().st_mtime == self.index_path.stat().st_mtime: create_index(self.filepath, self.index_path, index_ratio=index_ratio, index_wid...
[ "Return", "an", "open", "file", "-", "object", "to", "the", "index", "file" ]
brycedrennan/random-line-access
python
https://github.com/brycedrennan/random-line-access/blob/ad46749252ffbe5885f2f001f5abb5a180939268/randomlineaccess/index.py#L94-L98
[ "def", "get_or_create_index", "(", "self", ",", "index_ratio", ",", "index_width", ")", ":", "if", "not", "self", ".", "index_path", ".", "exists", "(", ")", "or", "not", "self", ".", "filepath", ".", "stat", "(", ")", ".", "st_mtime", "==", "self", "....
ad46749252ffbe5885f2f001f5abb5a180939268
valid
MapRouletteTaskCollection.create
Create the tasks on the server
maproulette/taskcollection.py
def create(self, server): """Create the tasks on the server""" for chunk in self.__cut_to_size(): server.post( 'tasks_admin', chunk.as_payload(), replacements={ 'slug': chunk.challenge.slug})
def create(self, server): """Create the tasks on the server""" for chunk in self.__cut_to_size(): server.post( 'tasks_admin', chunk.as_payload(), replacements={ 'slug': chunk.challenge.slug})
[ "Create", "the", "tasks", "on", "the", "server" ]
mvexel/maproulette-api-wrapper
python
https://github.com/mvexel/maproulette-api-wrapper/blob/835278111afefed2beecf9716a033529304c548f/maproulette/taskcollection.py#L42-L49
[ "def", "create", "(", "self", ",", "server", ")", ":", "for", "chunk", "in", "self", ".", "__cut_to_size", "(", ")", ":", "server", ".", "post", "(", "'tasks_admin'", ",", "chunk", ".", "as_payload", "(", ")", ",", "replacements", "=", "{", "'slug'", ...
835278111afefed2beecf9716a033529304c548f
valid
MapRouletteTaskCollection.update
Update existing tasks on the server
maproulette/taskcollection.py
def update(self, server): """Update existing tasks on the server""" for chunk in self.__cut_to_size(): server.put( 'tasks_admin', chunk.as_payload(), replacements={ 'slug': chunk.challenge.slug})
def update(self, server): """Update existing tasks on the server""" for chunk in self.__cut_to_size(): server.put( 'tasks_admin', chunk.as_payload(), replacements={ 'slug': chunk.challenge.slug})
[ "Update", "existing", "tasks", "on", "the", "server" ]
mvexel/maproulette-api-wrapper
python
https://github.com/mvexel/maproulette-api-wrapper/blob/835278111afefed2beecf9716a033529304c548f/maproulette/taskcollection.py#L51-L58
[ "def", "update", "(", "self", ",", "server", ")", ":", "for", "chunk", "in", "self", ".", "__cut_to_size", "(", ")", ":", "server", ".", "put", "(", "'tasks_admin'", ",", "chunk", ".", "as_payload", "(", ")", ",", "replacements", "=", "{", "'slug'", ...
835278111afefed2beecf9716a033529304c548f
valid
MapRouletteTaskCollection.reconcile
Reconcile this collection with the server.
maproulette/taskcollection.py
def reconcile(self, server): """ Reconcile this collection with the server. """ if not self.challenge.exists(server): raise Exception('Challenge does not exist on server') existing = MapRouletteTaskCollection.from_server(server, self.challenge) same = [] ...
def reconcile(self, server): """ Reconcile this collection with the server. """ if not self.challenge.exists(server): raise Exception('Challenge does not exist on server') existing = MapRouletteTaskCollection.from_server(server, self.challenge) same = [] ...
[ "Reconcile", "this", "collection", "with", "the", "server", "." ]
mvexel/maproulette-api-wrapper
python
https://github.com/mvexel/maproulette-api-wrapper/blob/835278111afefed2beecf9716a033529304c548f/maproulette/taskcollection.py#L60-L108
[ "def", "reconcile", "(", "self", ",", "server", ")", ":", "if", "not", "self", ".", "challenge", ".", "exists", "(", "server", ")", ":", "raise", "Exception", "(", "'Challenge does not exist on server'", ")", "existing", "=", "MapRouletteTaskCollection", ".", ...
835278111afefed2beecf9716a033529304c548f
valid
yn_prompt
Prompts the user for yes or no.
tmc/ui/prompt.py
def yn_prompt(msg, default=True): """ Prompts the user for yes or no. """ ret = custom_prompt(msg, ["y", "n"], "y" if default else "n") if ret == "y": return True return False
def yn_prompt(msg, default=True): """ Prompts the user for yes or no. """ ret = custom_prompt(msg, ["y", "n"], "y" if default else "n") if ret == "y": return True return False
[ "Prompts", "the", "user", "for", "yes", "or", "no", "." ]
minttu/tmc.py
python
https://github.com/minttu/tmc.py/blob/212cfe1791a4aab4783f99b665cc32da6437f419/tmc/ui/prompt.py#L1-L8
[ "def", "yn_prompt", "(", "msg", ",", "default", "=", "True", ")", ":", "ret", "=", "custom_prompt", "(", "msg", ",", "[", "\"y\"", ",", "\"n\"", "]", ",", "\"y\"", "if", "default", "else", "\"n\"", ")", "if", "ret", "==", "\"y\"", ":", "return", "T...
212cfe1791a4aab4783f99b665cc32da6437f419
valid
custom_prompt
Prompts the user with custom options.
tmc/ui/prompt.py
def custom_prompt(msg, options, default): """ Prompts the user with custom options. """ formatted_options = [ x.upper() if x == default else x.lower() for x in options ] sure = input("{0} [{1}]: ".format(msg, "/".join(formatted_options))) if len(sure) == 0: return default ...
def custom_prompt(msg, options, default): """ Prompts the user with custom options. """ formatted_options = [ x.upper() if x == default else x.lower() for x in options ] sure = input("{0} [{1}]: ".format(msg, "/".join(formatted_options))) if len(sure) == 0: return default ...
[ "Prompts", "the", "user", "with", "custom", "options", "." ]
minttu/tmc.py
python
https://github.com/minttu/tmc.py/blob/212cfe1791a4aab4783f99b665cc32da6437f419/tmc/ui/prompt.py#L11-L24
[ "def", "custom_prompt", "(", "msg", ",", "options", ",", "default", ")", ":", "formatted_options", "=", "[", "x", ".", "upper", "(", ")", "if", "x", "==", "default", "else", "x", ".", "lower", "(", ")", "for", "x", "in", "options", "]", "sure", "="...
212cfe1791a4aab4783f99b665cc32da6437f419
valid
read
Reading the configure file and adds non-existing attributes to 'args
lrcloud/config_parser.py
def read(args): """Reading the configure file and adds non-existing attributes to 'args'""" if args.config_file is None or not isfile(args.config_file): return logging.info("Reading configure file: %s"%args.config_file) config = cparser.ConfigParser() config.read(args.config_file) if ...
def read(args): """Reading the configure file and adds non-existing attributes to 'args'""" if args.config_file is None or not isfile(args.config_file): return logging.info("Reading configure file: %s"%args.config_file) config = cparser.ConfigParser() config.read(args.config_file) if ...
[ "Reading", "the", "configure", "file", "and", "adds", "non", "-", "existing", "attributes", "to", "args" ]
madsbk/lrcloud
python
https://github.com/madsbk/lrcloud/blob/8d99be3e1abdf941642e9a1c86b7d775dc373c0b/lrcloud/config_parser.py#L22-L41
[ "def", "read", "(", "args", ")", ":", "if", "args", ".", "config_file", "is", "None", "or", "not", "isfile", "(", "args", ".", "config_file", ")", ":", "return", "logging", ".", "info", "(", "\"Reading configure file: %s\"", "%", "args", ".", "config_file"...
8d99be3e1abdf941642e9a1c86b7d775dc373c0b
valid
write
Writing the configure file with the attributes in 'args
lrcloud/config_parser.py
def write(args): """Writing the configure file with the attributes in 'args'""" logging.info("Writing configure file: %s"%args.config_file) if args.config_file is None: return #Let's add each attribute of 'args' to the configure file config = cparser.ConfigParser() config.add_section("...
def write(args): """Writing the configure file with the attributes in 'args'""" logging.info("Writing configure file: %s"%args.config_file) if args.config_file is None: return #Let's add each attribute of 'args' to the configure file config = cparser.ConfigParser() config.add_section("...
[ "Writing", "the", "configure", "file", "with", "the", "attributes", "in", "args" ]
madsbk/lrcloud
python
https://github.com/madsbk/lrcloud/blob/8d99be3e1abdf941642e9a1c86b7d775dc373c0b/lrcloud/config_parser.py#L44-L62
[ "def", "write", "(", "args", ")", ":", "logging", ".", "info", "(", "\"Writing configure file: %s\"", "%", "args", ".", "config_file", ")", "if", "args", ".", "config_file", "is", "None", ":", "return", "#Let's add each attribute of 'args' to the configure file", "c...
8d99be3e1abdf941642e9a1c86b7d775dc373c0b
valid
_spawn_memcached
Helper function for tests. Spawns a memcached process attached to sock. Returns Popen instance. Terminate with p.terminate(). Note: sock parameter is not checked, and command is executed as shell. Use only if you trust that sock parameter. You've been warned.
memcachemap.py
def _spawn_memcached(sock): """Helper function for tests. Spawns a memcached process attached to sock. Returns Popen instance. Terminate with p.terminate(). Note: sock parameter is not checked, and command is executed as shell. Use only if you trust that sock parameter. You've been warned. """ p = subprocess.Pope...
def _spawn_memcached(sock): """Helper function for tests. Spawns a memcached process attached to sock. Returns Popen instance. Terminate with p.terminate(). Note: sock parameter is not checked, and command is executed as shell. Use only if you trust that sock parameter. You've been warned. """ p = subprocess.Pope...
[ "Helper", "function", "for", "tests", ".", "Spawns", "a", "memcached", "process", "attached", "to", "sock", ".", "Returns", "Popen", "instance", ".", "Terminate", "with", "p", ".", "terminate", "()", ".", "Note", ":", "sock", "parameter", "is", "not", "che...
langloisjp/pysvccache
python
https://github.com/langloisjp/pysvccache/blob/c4b95f1982f3a99e1f63341d15173099361e549b/memcachemap.py#L54-L63
[ "def", "_spawn_memcached", "(", "sock", ")", ":", "p", "=", "subprocess", ".", "Popen", "(", "'memcached -s '", "+", "sock", ",", "shell", "=", "True", ")", "time", ".", "sleep", "(", "0.2", ")", "# memcached needs to initialize", "assert", "p", ".", "poll...
c4b95f1982f3a99e1f63341d15173099361e549b
valid
GameObject.dump
Dump (return) a dict representation of the GameObject. This is a Python dict and is NOT serialized. NB: the answer (a DigitWord object) and the mode (a GameMode object) are converted to python objects of a list and dict respectively. :return: python <dict> of the GameObject as detailed ...
python_cowbull_game/GameObject.py
def dump(self): """ Dump (return) a dict representation of the GameObject. This is a Python dict and is NOT serialized. NB: the answer (a DigitWord object) and the mode (a GameMode object) are converted to python objects of a list and dict respectively. :return: python <...
def dump(self): """ Dump (return) a dict representation of the GameObject. This is a Python dict and is NOT serialized. NB: the answer (a DigitWord object) and the mode (a GameMode object) are converted to python objects of a list and dict respectively. :return: python <...
[ "Dump", "(", "return", ")", "a", "dict", "representation", "of", "the", "GameObject", ".", "This", "is", "a", "Python", "dict", "and", "is", "NOT", "serialized", ".", "NB", ":", "the", "answer", "(", "a", "DigitWord", "object", ")", "and", "the", "mode...
dsandersAzure/python_cowbull_game
python
https://github.com/dsandersAzure/python_cowbull_game/blob/82a0d8ee127869123d4fad51a8cd1707879e368f/python_cowbull_game/GameObject.py#L123-L140
[ "def", "dump", "(", "self", ")", ":", "return", "{", "\"key\"", ":", "self", ".", "_key", ",", "\"status\"", ":", "self", ".", "_status", ",", "\"ttl\"", ":", "self", ".", "_ttl", ",", "\"answer\"", ":", "self", ".", "_answer", ".", "word", ",", "\...
82a0d8ee127869123d4fad51a8cd1707879e368f
valid
GameObject.load
Load the representation of a GameObject from a Python <dict> representing the game object. :param source: a Python <dict> as detailed above. :return:
python_cowbull_game/GameObject.py
def load(self, source=None): """ Load the representation of a GameObject from a Python <dict> representing the game object. :param source: a Python <dict> as detailed above. :return: """ if not source: raise ValueError("A valid dictionary must be pas...
def load(self, source=None): """ Load the representation of a GameObject from a Python <dict> representing the game object. :param source: a Python <dict> as detailed above. :return: """ if not source: raise ValueError("A valid dictionary must be pas...
[ "Load", "the", "representation", "of", "a", "GameObject", "from", "a", "Python", "<dict", ">", "representing", "the", "game", "object", "." ]
dsandersAzure/python_cowbull_game
python
https://github.com/dsandersAzure/python_cowbull_game/blob/82a0d8ee127869123d4fad51a8cd1707879e368f/python_cowbull_game/GameObject.py#L142-L172
[ "def", "load", "(", "self", ",", "source", "=", "None", ")", ":", "if", "not", "source", ":", "raise", "ValueError", "(", "\"A valid dictionary must be passed as the source_dict\"", ")", "if", "not", "isinstance", "(", "source", ",", "dict", ")", ":", "raise",...
82a0d8ee127869123d4fad51a8cd1707879e368f
valid
GameObject.new
Create a new instance of a game. Note, a mode MUST be provided and MUST be of type GameMode. :param mode: <required>
python_cowbull_game/GameObject.py
def new(self, mode): """ Create a new instance of a game. Note, a mode MUST be provided and MUST be of type GameMode. :param mode: <required> """ dw = DigitWord(wordtype=mode.digit_type) dw.random(mode.digits) self._key = str(uuid.uuid4()) self....
def new(self, mode): """ Create a new instance of a game. Note, a mode MUST be provided and MUST be of type GameMode. :param mode: <required> """ dw = DigitWord(wordtype=mode.digit_type) dw.random(mode.digits) self._key = str(uuid.uuid4()) self....
[ "Create", "a", "new", "instance", "of", "a", "game", ".", "Note", "a", "mode", "MUST", "be", "provided", "and", "MUST", "be", "of", "type", "GameMode", "." ]
dsandersAzure/python_cowbull_game
python
https://github.com/dsandersAzure/python_cowbull_game/blob/82a0d8ee127869123d4fad51a8cd1707879e368f/python_cowbull_game/GameObject.py#L174-L191
[ "def", "new", "(", "self", ",", "mode", ")", ":", "dw", "=", "DigitWord", "(", "wordtype", "=", "mode", ".", "digit_type", ")", "dw", ".", "random", "(", "mode", ".", "digits", ")", "self", ".", "_key", "=", "str", "(", "uuid", ".", "uuid4", "(",...
82a0d8ee127869123d4fad51a8cd1707879e368f
valid
SimBeam.emit_measured
The beam emittance :math:`\\langle x x' \\rangle`.
scisalt/PWFA/sim.py
def emit_measured(self): """ The beam emittance :math:`\\langle x x' \\rangle`. """ return _np.sqrt(self.spotsq*self.divsq-self.xxp**2)
def emit_measured(self): """ The beam emittance :math:`\\langle x x' \\rangle`. """ return _np.sqrt(self.spotsq*self.divsq-self.xxp**2)
[ "The", "beam", "emittance", ":", "math", ":", "\\\\", "langle", "x", "x", "\\\\", "rangle", "." ]
joelfrederico/SciSalt
python
https://github.com/joelfrederico/SciSalt/blob/7bf57c49c7dde0a8b0aa337fbd2fbd527ce7a67f/scisalt/PWFA/sim.py#L160-L164
[ "def", "emit_measured", "(", "self", ")", ":", "return", "_np", ".", "sqrt", "(", "self", ".", "spotsq", "*", "self", ".", "divsq", "-", "self", ".", "xxp", "**", "2", ")" ]
7bf57c49c7dde0a8b0aa337fbd2fbd527ce7a67f
valid
Version.bump
Bumps the Version given a target The target can be either MAJOR, MINOR or PATCH
yld/tag.py
def bump(self, target): """ Bumps the Version given a target The target can be either MAJOR, MINOR or PATCH """ if target == 'patch': return Version(self.major, self.minor, self.patch + 1) if target == 'minor': return Version(self.major, self.mino...
def bump(self, target): """ Bumps the Version given a target The target can be either MAJOR, MINOR or PATCH """ if target == 'patch': return Version(self.major, self.minor, self.patch + 1) if target == 'minor': return Version(self.major, self.mino...
[ "Bumps", "the", "Version", "given", "a", "target" ]
ewilazarus/yld
python
https://github.com/ewilazarus/yld/blob/157e474d1055f14ffdfd7e99da6c77d5f17d4307/yld/tag.py#L51-L63
[ "def", "bump", "(", "self", ",", "target", ")", ":", "if", "target", "==", "'patch'", ":", "return", "Version", "(", "self", ".", "major", ",", "self", ".", "minor", ",", "self", ".", "patch", "+", "1", ")", "if", "target", "==", "'minor'", ":", ...
157e474d1055f14ffdfd7e99da6c77d5f17d4307
valid
Tag.clone
Returns a copy of this object
yld/tag.py
def clone(self): """ Returns a copy of this object """ t = Tag(self.version.major, self.version.minor, self.version.patch) if self.revision is not None: t.revision = self.revision.clone() return t
def clone(self): """ Returns a copy of this object """ t = Tag(self.version.major, self.version.minor, self.version.patch) if self.revision is not None: t.revision = self.revision.clone() return t
[ "Returns", "a", "copy", "of", "this", "object" ]
ewilazarus/yld
python
https://github.com/ewilazarus/yld/blob/157e474d1055f14ffdfd7e99da6c77d5f17d4307/yld/tag.py#L142-L149
[ "def", "clone", "(", "self", ")", ":", "t", "=", "Tag", "(", "self", ".", "version", ".", "major", ",", "self", ".", "version", ".", "minor", ",", "self", ".", "version", ".", "patch", ")", "if", "self", ".", "revision", "is", "not", "None", ":",...
157e474d1055f14ffdfd7e99da6c77d5f17d4307
valid
Tag.with_revision
Returns a Tag with a given revision
yld/tag.py
def with_revision(self, label, number): """ Returns a Tag with a given revision """ t = self.clone() t.revision = Revision(label, number) return t
def with_revision(self, label, number): """ Returns a Tag with a given revision """ t = self.clone() t.revision = Revision(label, number) return t
[ "Returns", "a", "Tag", "with", "a", "given", "revision" ]
ewilazarus/yld
python
https://github.com/ewilazarus/yld/blob/157e474d1055f14ffdfd7e99da6c77d5f17d4307/yld/tag.py#L151-L157
[ "def", "with_revision", "(", "self", ",", "label", ",", "number", ")", ":", "t", "=", "self", ".", "clone", "(", ")", "t", ".", "revision", "=", "Revision", "(", "label", ",", "number", ")", "return", "t" ]
157e474d1055f14ffdfd7e99da6c77d5f17d4307
valid
Tag.parse
Parses a string into a Tag
yld/tag.py
def parse(s): """ Parses a string into a Tag """ try: m = _regex.match(s) t = Tag(int(m.group('major')), int(m.group('minor')), int(m.group('patch'))) return t \ if m.group('label') is None \ ...
def parse(s): """ Parses a string into a Tag """ try: m = _regex.match(s) t = Tag(int(m.group('major')), int(m.group('minor')), int(m.group('patch'))) return t \ if m.group('label') is None \ ...
[ "Parses", "a", "string", "into", "a", "Tag" ]
ewilazarus/yld
python
https://github.com/ewilazarus/yld/blob/157e474d1055f14ffdfd7e99da6c77d5f17d4307/yld/tag.py#L174-L187
[ "def", "parse", "(", "s", ")", ":", "try", ":", "m", "=", "_regex", ".", "match", "(", "s", ")", "t", "=", "Tag", "(", "int", "(", "m", ".", "group", "(", "'major'", ")", ")", ",", "int", "(", "m", ".", "group", "(", "'minor'", ")", ")", ...
157e474d1055f14ffdfd7e99da6c77d5f17d4307
valid
TagHandler.yield_tag
Returns a new Tag containing the bumped target and/or the bumped label
yld/tag.py
def yield_tag(self, target=None, label=None): """ Returns a new Tag containing the bumped target and/or the bumped label """ if target is None and label is None: raise ValueError('`target` and/or `label` must be specified') if label is None: return self._y...
def yield_tag(self, target=None, label=None): """ Returns a new Tag containing the bumped target and/or the bumped label """ if target is None and label is None: raise ValueError('`target` and/or `label` must be specified') if label is None: return self._y...
[ "Returns", "a", "new", "Tag", "containing", "the", "bumped", "target", "and", "/", "or", "the", "bumped", "label" ]
ewilazarus/yld
python
https://github.com/ewilazarus/yld/blob/157e474d1055f14ffdfd7e99da6c77d5f17d4307/yld/tag.py#L226-L236
[ "def", "yield_tag", "(", "self", ",", "target", "=", "None", ",", "label", "=", "None", ")", ":", "if", "target", "is", "None", "and", "label", "is", "None", ":", "raise", "ValueError", "(", "'`target` and/or `label` must be specified'", ")", "if", "label", ...
157e474d1055f14ffdfd7e99da6c77d5f17d4307
valid
tile
Tiles open figures.
scisalt/matplotlib/tile.py
def tile(): """Tiles open figures.""" figs = plt.get_fignums() # Keep track of x, y, size for figures x = 0 y = 0 # maxy = 0 toppad = 21 size = np.array([0, 0]) if ( len(figs) != 0 ): fig = plt.figure(figs[0]) screen = fig.canvas.window.get_sc...
def tile(): """Tiles open figures.""" figs = plt.get_fignums() # Keep track of x, y, size for figures x = 0 y = 0 # maxy = 0 toppad = 21 size = np.array([0, 0]) if ( len(figs) != 0 ): fig = plt.figure(figs[0]) screen = fig.canvas.window.get_sc...
[ "Tiles", "open", "figures", "." ]
joelfrederico/SciSalt
python
https://github.com/joelfrederico/SciSalt/blob/7bf57c49c7dde0a8b0aa337fbd2fbd527ce7a67f/scisalt/matplotlib/tile.py#L9-L45
[ "def", "tile", "(", ")", ":", "figs", "=", "plt", ".", "get_fignums", "(", ")", "# Keep track of x, y, size for figures", "x", "=", "0", "y", "=", "0", "# maxy = 0", "toppad", "=", "21", "size", "=", "np", ".", "array", "(", "[", "0", ",", "0", "]...
7bf57c49c7dde0a8b0aa337fbd2fbd527ce7a67f
valid
linspaceborders
Generate a new array with numbers interpolated between the numbers of the input array. Extrapolates elements to the left and right sides to get the exterior border as well. Parameters ---------- array : :class:`numpy.ndarray` The original array. Returns ------- array : :class:`nu...
scisalt/numpy/linspaceborders.py
def linspaceborders(array): """ Generate a new array with numbers interpolated between the numbers of the input array. Extrapolates elements to the left and right sides to get the exterior border as well. Parameters ---------- array : :class:`numpy.ndarray` The original array. Ret...
def linspaceborders(array): """ Generate a new array with numbers interpolated between the numbers of the input array. Extrapolates elements to the left and right sides to get the exterior border as well. Parameters ---------- array : :class:`numpy.ndarray` The original array. Ret...
[ "Generate", "a", "new", "array", "with", "numbers", "interpolated", "between", "the", "numbers", "of", "the", "input", "array", ".", "Extrapolates", "elements", "to", "the", "left", "and", "right", "sides", "to", "get", "the", "exterior", "border", "as", "we...
joelfrederico/SciSalt
python
https://github.com/joelfrederico/SciSalt/blob/7bf57c49c7dde0a8b0aa337fbd2fbd527ce7a67f/scisalt/numpy/linspaceborders.py#L8-L40
[ "def", "linspaceborders", "(", "array", ")", ":", "# Get and set left side", "dela", "=", "array", "[", "1", "]", "-", "array", "[", "0", "]", "new_arr", "=", "_np", ".", "array", "(", "[", "array", "[", "0", "]", "-", "dela", "/", "2", "]", ")", ...
7bf57c49c7dde0a8b0aa337fbd2fbd527ce7a67f
valid
Ions1D.nb0
On-axis beam density :math:`n_{b,0}`.
scisalt/PWFA/ions1d.py
def nb0(self): """ On-axis beam density :math:`n_{b,0}`. """ return self.N_e / (4*_np.sqrt(3) * _np.pi * self.sig_x * self.sig_y * self.sig_xi)
def nb0(self): """ On-axis beam density :math:`n_{b,0}`. """ return self.N_e / (4*_np.sqrt(3) * _np.pi * self.sig_x * self.sig_y * self.sig_xi)
[ "On", "-", "axis", "beam", "density", ":", "math", ":", "n_", "{", "b", "0", "}", "." ]
joelfrederico/SciSalt
python
https://github.com/joelfrederico/SciSalt/blob/7bf57c49c7dde0a8b0aa337fbd2fbd527ce7a67f/scisalt/PWFA/ions1d.py#L73-L77
[ "def", "nb0", "(", "self", ")", ":", "return", "self", ".", "N_e", "/", "(", "4", "*", "_np", ".", "sqrt", "(", "3", ")", "*", "_np", ".", "pi", "*", "self", ".", "sig_x", "*", "self", ".", "sig_y", "*", "self", ".", "sig_xi", ")" ]
7bf57c49c7dde0a8b0aa337fbd2fbd527ce7a67f
valid
Ions1D.k
Driving force term: :math:`r'' = -k \\left( \\frac{1-e^{-r^2/2{\\sigma_r}^2}}{r} \\right)`
scisalt/PWFA/ions1d.py
def k(self): """ Driving force term: :math:`r'' = -k \\left( \\frac{1-e^{-r^2/2{\\sigma_r}^2}}{r} \\right)` """ try: return self._k except AttributeError: self._k = _np.sqrt(_np.pi/8) * e**2 * self.nb0 * self.sig_y / ( e0 * self.m * c**2) retur...
def k(self): """ Driving force term: :math:`r'' = -k \\left( \\frac{1-e^{-r^2/2{\\sigma_r}^2}}{r} \\right)` """ try: return self._k except AttributeError: self._k = _np.sqrt(_np.pi/8) * e**2 * self.nb0 * self.sig_y / ( e0 * self.m * c**2) retur...
[ "Driving", "force", "term", ":", ":", "math", ":", "r", "=", "-", "k", "\\\\", "left", "(", "\\\\", "frac", "{", "1", "-", "e^", "{", "-", "r^2", "/", "2", "{", "\\\\", "sigma_r", "}", "^2", "}}", "{", "r", "}", "\\\\", "right", ")" ]
joelfrederico/SciSalt
python
https://github.com/joelfrederico/SciSalt/blob/7bf57c49c7dde0a8b0aa337fbd2fbd527ce7a67f/scisalt/PWFA/ions1d.py#L80-L88
[ "def", "k", "(", "self", ")", ":", "try", ":", "return", "self", ".", "_k", "except", "AttributeError", ":", "self", ".", "_k", "=", "_np", ".", "sqrt", "(", "_np", ".", "pi", "/", "8", ")", "*", "e", "**", "2", "*", "self", ".", "nb0", "*", ...
7bf57c49c7dde0a8b0aa337fbd2fbd527ce7a67f
valid
Ions1D.k_small
Small-angle driving force term: :math:`r'' = -k_{small} r`. Note: :math:`k_{small} = \\frac{k}{2{\\sigma_r^2}}`
scisalt/PWFA/ions1d.py
def k_small(self): """ Small-angle driving force term: :math:`r'' = -k_{small} r`. Note: :math:`k_{small} = \\frac{k}{2{\\sigma_r^2}}` """ return self.k * _np.sqrt(2/_np.pi) / self.sig_y
def k_small(self): """ Small-angle driving force term: :math:`r'' = -k_{small} r`. Note: :math:`k_{small} = \\frac{k}{2{\\sigma_r^2}}` """ return self.k * _np.sqrt(2/_np.pi) / self.sig_y
[ "Small", "-", "angle", "driving", "force", "term", ":", ":", "math", ":", "r", "=", "-", "k_", "{", "small", "}", "r", "." ]
joelfrederico/SciSalt
python
https://github.com/joelfrederico/SciSalt/blob/7bf57c49c7dde0a8b0aa337fbd2fbd527ce7a67f/scisalt/PWFA/ions1d.py#L91-L97
[ "def", "k_small", "(", "self", ")", ":", "return", "self", ".", "k", "*", "_np", ".", "sqrt", "(", "2", "/", "_np", ".", "pi", ")", "/", "self", ".", "sig_y" ]
7bf57c49c7dde0a8b0aa337fbd2fbd527ce7a67f
valid
update_time
When a Comment is added, updates the Update to set "last_updated" time
build/lib/happenings/signals.py
def update_time(sender, **kwargs): """ When a Comment is added, updates the Update to set "last_updated" time """ comment = kwargs['instance'] if comment.content_type.app_label == "happenings" and comment.content_type.name == "Update": from .models import Update item = Update.objects...
def update_time(sender, **kwargs): """ When a Comment is added, updates the Update to set "last_updated" time """ comment = kwargs['instance'] if comment.content_type.app_label == "happenings" and comment.content_type.name == "Update": from .models import Update item = Update.objects...
[ "When", "a", "Comment", "is", "added", "updates", "the", "Update", "to", "set", "last_updated", "time" ]
tBaxter/tango-happenings
python
https://github.com/tBaxter/tango-happenings/blob/cb3c49ea39e0a6cef9c6ffb534c2fbf401139ba2/build/lib/happenings/signals.py#L2-L10
[ "def", "update_time", "(", "sender", ",", "*", "*", "kwargs", ")", ":", "comment", "=", "kwargs", "[", "'instance'", "]", "if", "comment", ".", "content_type", ".", "app_label", "==", "\"happenings\"", "and", "comment", ".", "content_type", ".", "name", "=...
cb3c49ea39e0a6cef9c6ffb534c2fbf401139ba2
valid
Game.new_game
new_game() creates a new game. Docs TBC. :return: JSON String containing the game object.
python_cowbull_game/v1_deprecated/Game.py
def new_game(self, mode=None): """ new_game() creates a new game. Docs TBC. :return: JSON String containing the game object. """ # Create a placeholder Game object self._g = GameObject() # Validate game mode _mode = mode or "normal" logging.deb...
def new_game(self, mode=None): """ new_game() creates a new game. Docs TBC. :return: JSON String containing the game object. """ # Create a placeholder Game object self._g = GameObject() # Validate game mode _mode = mode or "normal" logging.deb...
[ "new_game", "()", "creates", "a", "new", "game", ".", "Docs", "TBC", "." ]
dsandersAzure/python_cowbull_game
python
https://github.com/dsandersAzure/python_cowbull_game/blob/82a0d8ee127869123d4fad51a8cd1707879e368f/python_cowbull_game/v1_deprecated/Game.py#L53-L93
[ "def", "new_game", "(", "self", ",", "mode", "=", "None", ")", ":", "# Create a placeholder Game object", "self", ".", "_g", "=", "GameObject", "(", ")", "# Validate game mode", "_mode", "=", "mode", "or", "\"normal\"", "logging", ".", "debug", "(", "\"new_gam...
82a0d8ee127869123d4fad51a8cd1707879e368f
valid
Game.load_game
load_game() takes a JSON string representing a game object and calls the underlying game object (_g) to load the JSON. The underlying object will handle schema validation and transformation. :param jsonstr: A valid JSON string representing a GameObject (see above) :return: None
python_cowbull_game/v1_deprecated/Game.py
def load_game(self, jsonstr): """ load_game() takes a JSON string representing a game object and calls the underlying game object (_g) to load the JSON. The underlying object will handle schema validation and transformation. :param jsonstr: A valid JSON string representing a Gam...
def load_game(self, jsonstr): """ load_game() takes a JSON string representing a game object and calls the underlying game object (_g) to load the JSON. The underlying object will handle schema validation and transformation. :param jsonstr: A valid JSON string representing a Gam...
[ "load_game", "()", "takes", "a", "JSON", "string", "representing", "a", "game", "object", "and", "calls", "the", "underlying", "game", "object", "(", "_g", ")", "to", "load", "the", "JSON", ".", "The", "underlying", "object", "will", "handle", "schema", "v...
dsandersAzure/python_cowbull_game
python
https://github.com/dsandersAzure/python_cowbull_game/blob/82a0d8ee127869123d4fad51a8cd1707879e368f/python_cowbull_game/v1_deprecated/Game.py#L95-L111
[ "def", "load_game", "(", "self", ",", "jsonstr", ")", ":", "logging", ".", "debug", "(", "\"load_game called.\"", ")", "logging", ".", "debug", "(", "\"Creating empty GameObject.\"", ")", "self", ".", "_g", "=", "GameObject", "(", ")", "logging", ".", "debug...
82a0d8ee127869123d4fad51a8cd1707879e368f