prompt
large_stringlengths
72
9.34k
completion
large_stringlengths
0
7.61k
<|file_name|>test_resources.py<|end_file_name|><|fim▁begin|>from __future__ import absolute_import import unittest import bokeh.resources as resources from bokeh.resources import _get_cdn_urls WRAPPER = """Bokeh.$(function() { foo });""" WRAPPER_DEV = '''require(["jquery", "main"], function($, Bokeh) { Bokeh.s...
r = resources.Resources(mode="absolute") self.assertEqual(r.mode, "absolute") self.assertEqual(r.dev, False) self.assertEqual(r.js_raw, [DEFAULT_LOG_JS_RAW]) self.assertEqual(r.css_raw, []) self.assertEqual(r.messages, [])
<|file_name|>test_resources.py<|end_file_name|><|fim▁begin|>from __future__ import absolute_import import unittest import bokeh.resources as resources from bokeh.resources import _get_cdn_urls WRAPPER = """Bokeh.$(function() { foo });""" WRAPPER_DEV = '''require(["jquery", "main"], function($, Bokeh) { Bokeh.s...
r = resources.Resources(mode="absolute-dev") self.assertEqual(r.mode, "absolute") self.assertEqual(r.dev, True) self.assertEqual(r.js_raw, [DEFAULT_LOG_JS_RAW]) self.assertEqual(r.css_raw, []) self.assertEqual(r.messages, [])
<|file_name|>test_resources.py<|end_file_name|><|fim▁begin|>from __future__ import absolute_import import unittest import bokeh.resources as resources from bokeh.resources import _get_cdn_urls WRAPPER = """Bokeh.$(function() { foo });""" WRAPPER_DEV = '''require(["jquery", "main"], function($, Bokeh) { Bokeh.s...
self.assertRaises(ValueError, resources.Resources, "foo") for mode in ("inline", "cdn", "server", "server-dev", "absolute", "absolute-dev"): self.assertRaises(ValueError, resources.Resources, mode, root_dir="foo") for mode in ("inline", "server", "server-dev", "relative", "relative...
<|file_name|>test_resources.py<|end_file_name|><|fim▁begin|>from __future__ import absolute_import import unittest import bokeh.resources as resources from bokeh.resources import _get_cdn_urls WRAPPER = """Bokeh.$(function() { foo });""" WRAPPER_DEV = '''require(["jquery", "main"], function($, Bokeh) { Bokeh.s...
self.assertEqual(r.js_raw[-1], 'Bokeh.set_log_level("%s");' % level)
<|file_name|>test_resources.py<|end_file_name|><|fim▁begin|>from __future__ import absolute_import import unittest import bokeh.resources as resources from bokeh.resources import _get_cdn_urls WRAPPER = """Bokeh.$(function() { foo });""" WRAPPER_DEV = '''require(["jquery", "main"], function($, Bokeh) { Bokeh.s...
test_js_resources_default_mode_is_inline
<|file_name|>test_resources.py<|end_file_name|><|fim▁begin|>from __future__ import absolute_import import unittest import bokeh.resources as resources from bokeh.resources import _get_cdn_urls WRAPPER = """Bokeh.$(function() { foo });""" WRAPPER_DEV = '''require(["jquery", "main"], function($, Bokeh) { Bokeh.s...
test_js_resources_inline_has_no_css_resources
<|file_name|>test_resources.py<|end_file_name|><|fim▁begin|>from __future__ import absolute_import import unittest import bokeh.resources as resources from bokeh.resources import _get_cdn_urls WRAPPER = """Bokeh.$(function() { foo });""" WRAPPER_DEV = '''require(["jquery", "main"], function($, Bokeh) { Bokeh.s...
test_css_resources_default_mode_is_inline
<|file_name|>test_resources.py<|end_file_name|><|fim▁begin|>from __future__ import absolute_import import unittest import bokeh.resources as resources from bokeh.resources import _get_cdn_urls WRAPPER = """Bokeh.$(function() { foo });""" WRAPPER_DEV = '''require(["jquery", "main"], function($, Bokeh) { Bokeh.s...
test_inline_css_resources
<|file_name|>test_resources.py<|end_file_name|><|fim▁begin|>from __future__ import absolute_import import unittest import bokeh.resources as resources from bokeh.resources import _get_cdn_urls WRAPPER = """Bokeh.$(function() { foo });""" WRAPPER_DEV = '''require(["jquery", "main"], function($, Bokeh) { Bokeh.s...
test_basic
<|file_name|>test_resources.py<|end_file_name|><|fim▁begin|>from __future__ import absolute_import import unittest import bokeh.resources as resources from bokeh.resources import _get_cdn_urls WRAPPER = """Bokeh.$(function() { foo });""" WRAPPER_DEV = '''require(["jquery", "main"], function($, Bokeh) { Bokeh.s...
test_log_level
<|file_name|>test_resources.py<|end_file_name|><|fim▁begin|>from __future__ import absolute_import import unittest import bokeh.resources as resources from bokeh.resources import _get_cdn_urls WRAPPER = """Bokeh.$(function() { foo });""" WRAPPER_DEV = '''require(["jquery", "main"], function($, Bokeh) { Bokeh.s...
test_module_attrs
<|file_name|>test_resources.py<|end_file_name|><|fim▁begin|>from __future__ import absolute_import import unittest import bokeh.resources as resources from bokeh.resources import _get_cdn_urls WRAPPER = """Bokeh.$(function() { foo });""" WRAPPER_DEV = '''require(["jquery", "main"], function($, Bokeh) { Bokeh.s...
test_inline
<|file_name|>test_resources.py<|end_file_name|><|fim▁begin|>from __future__ import absolute_import import unittest import bokeh.resources as resources from bokeh.resources import _get_cdn_urls WRAPPER = """Bokeh.$(function() { foo });""" WRAPPER_DEV = '''require(["jquery", "main"], function($, Bokeh) { Bokeh.s...
test_get_cdn_urls
<|file_name|>test_resources.py<|end_file_name|><|fim▁begin|>from __future__ import absolute_import import unittest import bokeh.resources as resources from bokeh.resources import _get_cdn_urls WRAPPER = """Bokeh.$(function() { foo });""" WRAPPER_DEV = '''require(["jquery", "main"], function($, Bokeh) { Bokeh.s...
test_cdn
<|file_name|>test_resources.py<|end_file_name|><|fim▁begin|>from __future__ import absolute_import import unittest import bokeh.resources as resources from bokeh.resources import _get_cdn_urls WRAPPER = """Bokeh.$(function() { foo });""" WRAPPER_DEV = '''require(["jquery", "main"], function($, Bokeh) { Bokeh.s...
test_server
<|file_name|>test_resources.py<|end_file_name|><|fim▁begin|>from __future__ import absolute_import import unittest import bokeh.resources as resources from bokeh.resources import _get_cdn_urls WRAPPER = """Bokeh.$(function() { foo });""" WRAPPER_DEV = '''require(["jquery", "main"], function($, Bokeh) { Bokeh.s...
test_server_dev
<|file_name|>test_resources.py<|end_file_name|><|fim▁begin|>from __future__ import absolute_import import unittest import bokeh.resources as resources from bokeh.resources import _get_cdn_urls WRAPPER = """Bokeh.$(function() { foo });""" WRAPPER_DEV = '''require(["jquery", "main"], function($, Bokeh) { Bokeh.s...
test_relative
<|file_name|>test_resources.py<|end_file_name|><|fim▁begin|>from __future__ import absolute_import import unittest import bokeh.resources as resources from bokeh.resources import _get_cdn_urls WRAPPER = """Bokeh.$(function() { foo });""" WRAPPER_DEV = '''require(["jquery", "main"], function($, Bokeh) { Bokeh.s...
test_relative_dev
<|file_name|>test_resources.py<|end_file_name|><|fim▁begin|>from __future__ import absolute_import import unittest import bokeh.resources as resources from bokeh.resources import _get_cdn_urls WRAPPER = """Bokeh.$(function() { foo });""" WRAPPER_DEV = '''require(["jquery", "main"], function($, Bokeh) { Bokeh.s...
test_absolute
<|file_name|>test_resources.py<|end_file_name|><|fim▁begin|>from __future__ import absolute_import import unittest import bokeh.resources as resources from bokeh.resources import _get_cdn_urls WRAPPER = """Bokeh.$(function() { foo });""" WRAPPER_DEV = '''require(["jquery", "main"], function($, Bokeh) { Bokeh.s...
test_absolute_dev
<|file_name|>test_resources.py<|end_file_name|><|fim▁begin|>from __future__ import absolute_import import unittest import bokeh.resources as resources from bokeh.resources import _get_cdn_urls WRAPPER = """Bokeh.$(function() { foo });""" WRAPPER_DEV = '''require(["jquery", "main"], function($, Bokeh) { Bokeh.s...
test_argument_checks
<|file_name|>feedfetcher.py<|end_file_name|><|fim▁begin|><|fim▁hole|>"feed fetcher" from db import MySQLDatabase from fetcher import FeedFetcher def main(): db = MySQLDatabase() fetcher = FeedFetcher() feeds = db.get_feeds(offset=0, limit=10) read_count = 10 while len(feeds) > 0: for feed...
#!/usr/bin/python
<|file_name|>feedfetcher.py<|end_file_name|><|fim▁begin|>#!/usr/bin/python "feed fetcher" from db import MySQLDatabase from fetcher import FeedFetcher def main(): <|fim_middle|> if __name__ == '__main__': main() <|fim▁end|>
db = MySQLDatabase() fetcher = FeedFetcher() feeds = db.get_feeds(offset=0, limit=10) read_count = 10 while len(feeds) > 0: for feed in feeds: fid = feed[0] url = feed[1] title = feed[2] print "fetching #{0}: {1}".format(fid, url) ...
<|file_name|>feedfetcher.py<|end_file_name|><|fim▁begin|>#!/usr/bin/python "feed fetcher" from db import MySQLDatabase from fetcher import FeedFetcher def main(): db = MySQLDatabase() fetcher = FeedFetcher() feeds = db.get_feeds(offset=0, limit=10) read_count = 10 while len(feeds) > 0: fo...
main()
<|file_name|>feedfetcher.py<|end_file_name|><|fim▁begin|>#!/usr/bin/python "feed fetcher" from db import MySQLDatabase from fetcher import FeedFetcher def <|fim_middle|>(): db = MySQLDatabase() fetcher = FeedFetcher() feeds = db.get_feeds(offset=0, limit=10) read_count = 10 while len(feeds) > 0: ...
main
<|file_name|>_pid_correction.py<|end_file_name|><|fim▁begin|>import torch <|fim▁hole|>from deluca.lung.core import Controller, LungEnv class PIDCorrection(Controller): def __init__(self, base_controller: Controller, sim: LungEnv, pid_K=[0.0, 0.0], decay=0.1, **kwargs): self.base_controller = base_controll...
<|file_name|>_pid_correction.py<|end_file_name|><|fim▁begin|>import torch from deluca.lung.core import Controller, LungEnv class PIDCorrection(Controller): <|fim_middle|> <|fim▁end|>
def __init__(self, base_controller: Controller, sim: LungEnv, pid_K=[0.0, 0.0], decay=0.1, **kwargs): self.base_controller = base_controller self.sim = sim self.I = 0.0 self.K = pid_K self.decay = decay self.reset() def reset(self): self.base_controller....
<|file_name|>_pid_correction.py<|end_file_name|><|fim▁begin|>import torch from deluca.lung.core import Controller, LungEnv class PIDCorrection(Controller): def __init__(self, base_controller: Controller, sim: LungEnv, pid_K=[0.0, 0.0], decay=0.1, **kwargs): <|fim_middle|> def reset(self): s...
self.base_controller = base_controller self.sim = sim self.I = 0.0 self.K = pid_K self.decay = decay self.reset()
<|file_name|>_pid_correction.py<|end_file_name|><|fim▁begin|>import torch from deluca.lung.core import Controller, LungEnv class PIDCorrection(Controller): def __init__(self, base_controller: Controller, sim: LungEnv, pid_K=[0.0, 0.0], decay=0.1, **kwargs): self.base_controller = base_controller ...
self.base_controller.reset() self.sim.reset() self.I = 0.0
<|file_name|>_pid_correction.py<|end_file_name|><|fim▁begin|>import torch from deluca.lung.core import Controller, LungEnv class PIDCorrection(Controller): def __init__(self, base_controller: Controller, sim: LungEnv, pid_K=[0.0, 0.0], decay=0.1, **kwargs): self.base_controller = base_controller ...
u_in_base, u_out = self.base_controller(state, t) err = self.sim.pressure - state self.I = self.I * (1 - self.decay) + err * self.decay pid_correction = self.K[0] * err + self.K[1] * self.I u_in = torch.clamp(u_in_base + pid_correction, min=0.0, max=100.0) self.sim(u_i...
<|file_name|>_pid_correction.py<|end_file_name|><|fim▁begin|>import torch from deluca.lung.core import Controller, LungEnv class PIDCorrection(Controller): def <|fim_middle|>(self, base_controller: Controller, sim: LungEnv, pid_K=[0.0, 0.0], decay=0.1, **kwargs): self.base_controller = base_controller ...
__init__
<|file_name|>_pid_correction.py<|end_file_name|><|fim▁begin|>import torch from deluca.lung.core import Controller, LungEnv class PIDCorrection(Controller): def __init__(self, base_controller: Controller, sim: LungEnv, pid_K=[0.0, 0.0], decay=0.1, **kwargs): self.base_controller = base_controller ...
reset
<|file_name|>_pid_correction.py<|end_file_name|><|fim▁begin|>import torch from deluca.lung.core import Controller, LungEnv class PIDCorrection(Controller): def __init__(self, base_controller: Controller, sim: LungEnv, pid_K=[0.0, 0.0], decay=0.1, **kwargs): self.base_controller = base_controller ...
compute_action
<|file_name|>0005_auto_20161103_0856.py<|end_file_name|><|fim▁begin|># -*- coding: utf-8 -*- # Generated by Django 1.10.3 on 2016-11-03 08:56 from __future__ import unicode_literals from django.conf import settings from django.db import migrations, models import django.db.models.deletion class Migration(migrations.M...
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('name', models.CharField(max_length=255)),
<|file_name|>0005_auto_20161103_0856.py<|end_file_name|><|fim▁begin|># -*- coding: utf-8 -*- # Generated by Django 1.10.3 on 2016-11-03 08:56 from __future__ import unicode_literals from django.conf import settings from django.db import migrations, models import django.db.models.deletion class Migration(migrations.M...
dependencies = [ migrations.swappable_dependency(settings.AUTH_USER_MODEL), ('snapventure', '0004_auto_20161102_2043'), ] operations = [ migrations.CreateModel( name='Inscription', fields=[ ('id', models.AutoField(auto_created=True, primary_ke...
<|file_name|>overlay.py<|end_file_name|><|fim▁begin|>import math import urwid from mitmproxy.tools.console import common from mitmproxy.tools.console import signals from mitmproxy.tools.console import grideditor class SimpleOverlay(urwid.Overlay): def __init__(self, master, widget, parent, width, valign="middle...
class Chooser(urwid.WidgetWrap):
<|file_name|>overlay.py<|end_file_name|><|fim▁begin|>import math import urwid from mitmproxy.tools.console import common from mitmproxy.tools.console import signals from mitmproxy.tools.console import grideditor class SimpleOverlay(urwid.Overlay): <|fim_middle|> class Choice(urwid.WidgetWrap): def __init...
def __init__(self, master, widget, parent, width, valign="middle"): self.widget = widget self.master = master super().__init__( widget, parent, align="center", width=width, valign=valign, height="pack" ) def...
<|file_name|>overlay.py<|end_file_name|><|fim▁begin|>import math import urwid from mitmproxy.tools.console import common from mitmproxy.tools.console import signals from mitmproxy.tools.console import grideditor class SimpleOverlay(urwid.Overlay): def __init__(self, master, widget, parent, width, valign="middle...
self.widget = widget self.master = master super().__init__( widget, parent, align="center", width=width, valign=valign, height="pack" )
<|file_name|>overlay.py<|end_file_name|><|fim▁begin|>import math import urwid from mitmproxy.tools.console import common from mitmproxy.tools.console import signals from mitmproxy.tools.console import grideditor class SimpleOverlay(urwid.Overlay): def __init__(self, master, widget, parent, width, valign="middle...
key = super().keypress(size, key) if key == "esc": signals.pop_view_state.send(self) if key == "?": self.master.view_help(self.widget.make_help()) else: return key
<|file_name|>overlay.py<|end_file_name|><|fim▁begin|>import math import urwid from mitmproxy.tools.console import common from mitmproxy.tools.console import signals from mitmproxy.tools.console import grideditor class SimpleOverlay(urwid.Overlay): def __init__(self, master, widget, parent, width, valign="middle...
def __init__(self, txt, focus, current): if current: s = "option_active_selected" if focus else "option_active" else: s = "option_selected" if focus else "text" return super().__init__( urwid.AttrWrap( urwid.Padding(urwid.Text(txt)), ...
<|file_name|>overlay.py<|end_file_name|><|fim▁begin|>import math import urwid from mitmproxy.tools.console import common from mitmproxy.tools.console import signals from mitmproxy.tools.console import grideditor class SimpleOverlay(urwid.Overlay): def __init__(self, master, widget, parent, width, valign="middle...
if current: s = "option_active_selected" if focus else "option_active" else: s = "option_selected" if focus else "text" return super().__init__( urwid.AttrWrap( urwid.Padding(urwid.Text(txt)), s, ) )
<|file_name|>overlay.py<|end_file_name|><|fim▁begin|>import math import urwid from mitmproxy.tools.console import common from mitmproxy.tools.console import signals from mitmproxy.tools.console import grideditor class SimpleOverlay(urwid.Overlay): def __init__(self, master, widget, parent, width, valign="middle...
return True
<|file_name|>overlay.py<|end_file_name|><|fim▁begin|>import math import urwid from mitmproxy.tools.console import common from mitmproxy.tools.console import signals from mitmproxy.tools.console import grideditor class SimpleOverlay(urwid.Overlay): def __init__(self, master, widget, parent, width, valign="middle...
return key
<|file_name|>overlay.py<|end_file_name|><|fim▁begin|>import math import urwid from mitmproxy.tools.console import common from mitmproxy.tools.console import signals from mitmproxy.tools.console import grideditor class SimpleOverlay(urwid.Overlay): def __init__(self, master, widget, parent, width, valign="middle...
def __init__(self, choices, current): self.index = 0 self.choices = choices self.current = current def _get(self, idx, focus): c = self.choices[idx] return Choice(c, focus, c == self.current) def set_focus(self, index): self.index = index def get_focus(...
<|file_name|>overlay.py<|end_file_name|><|fim▁begin|>import math import urwid from mitmproxy.tools.console import common from mitmproxy.tools.console import signals from mitmproxy.tools.console import grideditor class SimpleOverlay(urwid.Overlay): def __init__(self, master, widget, parent, width, valign="middle...
self.index = 0 self.choices = choices self.current = current
<|file_name|>overlay.py<|end_file_name|><|fim▁begin|>import math import urwid from mitmproxy.tools.console import common from mitmproxy.tools.console import signals from mitmproxy.tools.console import grideditor class SimpleOverlay(urwid.Overlay): def __init__(self, master, widget, parent, width, valign="middle...
c = self.choices[idx] return Choice(c, focus, c == self.current)
<|file_name|>overlay.py<|end_file_name|><|fim▁begin|>import math import urwid from mitmproxy.tools.console import common from mitmproxy.tools.console import signals from mitmproxy.tools.console import grideditor class SimpleOverlay(urwid.Overlay): def __init__(self, master, widget, parent, width, valign="middle...
self.index = index
<|file_name|>overlay.py<|end_file_name|><|fim▁begin|>import math import urwid from mitmproxy.tools.console import common from mitmproxy.tools.console import signals from mitmproxy.tools.console import grideditor class SimpleOverlay(urwid.Overlay): def __init__(self, master, widget, parent, width, valign="middle...
return self._get(self.index, True), self.index
<|file_name|>overlay.py<|end_file_name|><|fim▁begin|>import math import urwid from mitmproxy.tools.console import common from mitmproxy.tools.console import signals from mitmproxy.tools.console import grideditor class SimpleOverlay(urwid.Overlay): def __init__(self, master, widget, parent, width, valign="middle...
if pos >= len(self.choices) - 1: return None, None pos = pos + 1 return self._get(pos, False), pos
<|file_name|>overlay.py<|end_file_name|><|fim▁begin|>import math import urwid from mitmproxy.tools.console import common from mitmproxy.tools.console import signals from mitmproxy.tools.console import grideditor class SimpleOverlay(urwid.Overlay): def __init__(self, master, widget, parent, width, valign="middle...
pos = pos - 1 if pos < 0: return None, None return self._get(pos, False), pos
<|file_name|>overlay.py<|end_file_name|><|fim▁begin|>import math import urwid from mitmproxy.tools.console import common from mitmproxy.tools.console import signals from mitmproxy.tools.console import grideditor class SimpleOverlay(urwid.Overlay): def __init__(self, master, widget, parent, width, valign="middle...
def __init__(self, title, choices, current, callback): self.choices = choices self.callback = callback choicewidth = max([len(i) for i in choices]) self.width = max(choicewidth, len(title) + 5) self.walker = ChooserListWalker(choices, current) super().__init__( ...
<|file_name|>overlay.py<|end_file_name|><|fim▁begin|>import math import urwid from mitmproxy.tools.console import common from mitmproxy.tools.console import signals from mitmproxy.tools.console import grideditor class SimpleOverlay(urwid.Overlay): def __init__(self, master, widget, parent, width, valign="middle...
self.choices = choices self.callback = callback choicewidth = max([len(i) for i in choices]) self.width = max(choicewidth, len(title) + 5) self.walker = ChooserListWalker(choices, current) super().__init__( urwid.AttrWrap( urwid.LineBox( ...
<|file_name|>overlay.py<|end_file_name|><|fim▁begin|>import math import urwid from mitmproxy.tools.console import common from mitmproxy.tools.console import signals from mitmproxy.tools.console import grideditor class SimpleOverlay(urwid.Overlay): def __init__(self, master, widget, parent, width, valign="middle...
return True
<|file_name|>overlay.py<|end_file_name|><|fim▁begin|>import math import urwid from mitmproxy.tools.console import common from mitmproxy.tools.console import signals from mitmproxy.tools.console import grideditor class SimpleOverlay(urwid.Overlay): def __init__(self, master, widget, parent, width, valign="middle...
key = common.shortcuts(key) if key == "enter": self.callback(self.choices[self.walker.index]) signals.pop_view_state.send(self) return super().keypress(size, key)
<|file_name|>overlay.py<|end_file_name|><|fim▁begin|>import math import urwid from mitmproxy.tools.console import common from mitmproxy.tools.console import signals from mitmproxy.tools.console import grideditor class SimpleOverlay(urwid.Overlay): def __init__(self, master, widget, parent, width, valign="middle...
text = [] keys = [ ("enter", "choose option"), ("esc", "exit chooser"), ] text.extend(common.format_keyvals(keys, key="key", val="text", indent=4)) return text
<|file_name|>overlay.py<|end_file_name|><|fim▁begin|>import math import urwid from mitmproxy.tools.console import common from mitmproxy.tools.console import signals from mitmproxy.tools.console import grideditor class SimpleOverlay(urwid.Overlay): def __init__(self, master, widget, parent, width, valign="middle...
def __init__(self, master, name, vals, vspace): """ vspace: how much vertical space to keep clear """ cols, rows = master.ui.get_cols_rows() self.ge = grideditor.OptionsEditor(master, name, vals) super().__init__( urwid.AttrWrap( urwid....
<|file_name|>overlay.py<|end_file_name|><|fim▁begin|>import math import urwid from mitmproxy.tools.console import common from mitmproxy.tools.console import signals from mitmproxy.tools.console import grideditor class SimpleOverlay(urwid.Overlay): def __init__(self, master, widget, parent, width, valign="middle...
""" vspace: how much vertical space to keep clear """ cols, rows = master.ui.get_cols_rows() self.ge = grideditor.OptionsEditor(master, name, vals) super().__init__( urwid.AttrWrap( urwid.LineBox( urwid.BoxAdapter(self.g...
<|file_name|>overlay.py<|end_file_name|><|fim▁begin|>import math import urwid from mitmproxy.tools.console import common from mitmproxy.tools.console import signals from mitmproxy.tools.console import grideditor class SimpleOverlay(urwid.Overlay): def __init__(self, master, widget, parent, width, valign="middle...
return self.ge.make_help()
<|file_name|>overlay.py<|end_file_name|><|fim▁begin|>import math import urwid from mitmproxy.tools.console import common from mitmproxy.tools.console import signals from mitmproxy.tools.console import grideditor class SimpleOverlay(urwid.Overlay): def __init__(self, master, widget, parent, width, valign="middle...
signals.pop_view_state.send(self)
<|file_name|>overlay.py<|end_file_name|><|fim▁begin|>import math import urwid from mitmproxy.tools.console import common from mitmproxy.tools.console import signals from mitmproxy.tools.console import grideditor class SimpleOverlay(urwid.Overlay): def __init__(self, master, widget, parent, width, valign="middle...
self.master.view_help(self.widget.make_help())
<|file_name|>overlay.py<|end_file_name|><|fim▁begin|>import math import urwid from mitmproxy.tools.console import common from mitmproxy.tools.console import signals from mitmproxy.tools.console import grideditor class SimpleOverlay(urwid.Overlay): def __init__(self, master, widget, parent, width, valign="middle...
return key
<|file_name|>overlay.py<|end_file_name|><|fim▁begin|>import math import urwid from mitmproxy.tools.console import common from mitmproxy.tools.console import signals from mitmproxy.tools.console import grideditor class SimpleOverlay(urwid.Overlay): def __init__(self, master, widget, parent, width, valign="middle...
s = "option_active_selected" if focus else "option_active"
<|file_name|>overlay.py<|end_file_name|><|fim▁begin|>import math import urwid from mitmproxy.tools.console import common from mitmproxy.tools.console import signals from mitmproxy.tools.console import grideditor class SimpleOverlay(urwid.Overlay): def __init__(self, master, widget, parent, width, valign="middle...
s = "option_selected" if focus else "text"
<|file_name|>overlay.py<|end_file_name|><|fim▁begin|>import math import urwid from mitmproxy.tools.console import common from mitmproxy.tools.console import signals from mitmproxy.tools.console import grideditor class SimpleOverlay(urwid.Overlay): def __init__(self, master, widget, parent, width, valign="middle...
return None, None
<|file_name|>overlay.py<|end_file_name|><|fim▁begin|>import math import urwid from mitmproxy.tools.console import common from mitmproxy.tools.console import signals from mitmproxy.tools.console import grideditor class SimpleOverlay(urwid.Overlay): def __init__(self, master, widget, parent, width, valign="middle...
return None, None
<|file_name|>overlay.py<|end_file_name|><|fim▁begin|>import math import urwid from mitmproxy.tools.console import common from mitmproxy.tools.console import signals from mitmproxy.tools.console import grideditor class SimpleOverlay(urwid.Overlay): def __init__(self, master, widget, parent, width, valign="middle...
self.callback(self.choices[self.walker.index]) signals.pop_view_state.send(self)
<|file_name|>overlay.py<|end_file_name|><|fim▁begin|>import math import urwid from mitmproxy.tools.console import common from mitmproxy.tools.console import signals from mitmproxy.tools.console import grideditor class SimpleOverlay(urwid.Overlay): def <|fim_middle|>(self, master, widget, parent, width, valign="...
__init__
<|file_name|>overlay.py<|end_file_name|><|fim▁begin|>import math import urwid from mitmproxy.tools.console import common from mitmproxy.tools.console import signals from mitmproxy.tools.console import grideditor class SimpleOverlay(urwid.Overlay): def __init__(self, master, widget, parent, width, valign="middle...
keypress
<|file_name|>overlay.py<|end_file_name|><|fim▁begin|>import math import urwid from mitmproxy.tools.console import common from mitmproxy.tools.console import signals from mitmproxy.tools.console import grideditor class SimpleOverlay(urwid.Overlay): def __init__(self, master, widget, parent, width, valign="middle...
__init__
<|file_name|>overlay.py<|end_file_name|><|fim▁begin|>import math import urwid from mitmproxy.tools.console import common from mitmproxy.tools.console import signals from mitmproxy.tools.console import grideditor class SimpleOverlay(urwid.Overlay): def __init__(self, master, widget, parent, width, valign="middle...
selectable
<|file_name|>overlay.py<|end_file_name|><|fim▁begin|>import math import urwid from mitmproxy.tools.console import common from mitmproxy.tools.console import signals from mitmproxy.tools.console import grideditor class SimpleOverlay(urwid.Overlay): def __init__(self, master, widget, parent, width, valign="middle...
keypress
<|file_name|>overlay.py<|end_file_name|><|fim▁begin|>import math import urwid from mitmproxy.tools.console import common from mitmproxy.tools.console import signals from mitmproxy.tools.console import grideditor class SimpleOverlay(urwid.Overlay): def __init__(self, master, widget, parent, width, valign="middle...
__init__
<|file_name|>overlay.py<|end_file_name|><|fim▁begin|>import math import urwid from mitmproxy.tools.console import common from mitmproxy.tools.console import signals from mitmproxy.tools.console import grideditor class SimpleOverlay(urwid.Overlay): def __init__(self, master, widget, parent, width, valign="middle...
_get
<|file_name|>overlay.py<|end_file_name|><|fim▁begin|>import math import urwid from mitmproxy.tools.console import common from mitmproxy.tools.console import signals from mitmproxy.tools.console import grideditor class SimpleOverlay(urwid.Overlay): def __init__(self, master, widget, parent, width, valign="middle...
set_focus
<|file_name|>overlay.py<|end_file_name|><|fim▁begin|>import math import urwid from mitmproxy.tools.console import common from mitmproxy.tools.console import signals from mitmproxy.tools.console import grideditor class SimpleOverlay(urwid.Overlay): def __init__(self, master, widget, parent, width, valign="middle...
get_focus
<|file_name|>overlay.py<|end_file_name|><|fim▁begin|>import math import urwid from mitmproxy.tools.console import common from mitmproxy.tools.console import signals from mitmproxy.tools.console import grideditor class SimpleOverlay(urwid.Overlay): def __init__(self, master, widget, parent, width, valign="middle...
get_next
<|file_name|>overlay.py<|end_file_name|><|fim▁begin|>import math import urwid from mitmproxy.tools.console import common from mitmproxy.tools.console import signals from mitmproxy.tools.console import grideditor class SimpleOverlay(urwid.Overlay): def __init__(self, master, widget, parent, width, valign="middle...
get_prev
<|file_name|>overlay.py<|end_file_name|><|fim▁begin|>import math import urwid from mitmproxy.tools.console import common from mitmproxy.tools.console import signals from mitmproxy.tools.console import grideditor class SimpleOverlay(urwid.Overlay): def __init__(self, master, widget, parent, width, valign="middle...
__init__
<|file_name|>overlay.py<|end_file_name|><|fim▁begin|>import math import urwid from mitmproxy.tools.console import common from mitmproxy.tools.console import signals from mitmproxy.tools.console import grideditor class SimpleOverlay(urwid.Overlay): def __init__(self, master, widget, parent, width, valign="middle...
selectable
<|file_name|>overlay.py<|end_file_name|><|fim▁begin|>import math import urwid from mitmproxy.tools.console import common from mitmproxy.tools.console import signals from mitmproxy.tools.console import grideditor class SimpleOverlay(urwid.Overlay): def __init__(self, master, widget, parent, width, valign="middle...
keypress
<|file_name|>overlay.py<|end_file_name|><|fim▁begin|>import math import urwid from mitmproxy.tools.console import common from mitmproxy.tools.console import signals from mitmproxy.tools.console import grideditor class SimpleOverlay(urwid.Overlay): def __init__(self, master, widget, parent, width, valign="middle...
make_help
<|file_name|>overlay.py<|end_file_name|><|fim▁begin|>import math import urwid from mitmproxy.tools.console import common from mitmproxy.tools.console import signals from mitmproxy.tools.console import grideditor class SimpleOverlay(urwid.Overlay): def __init__(self, master, widget, parent, width, valign="middle...
__init__
<|file_name|>overlay.py<|end_file_name|><|fim▁begin|>import math import urwid from mitmproxy.tools.console import common from mitmproxy.tools.console import signals from mitmproxy.tools.console import grideditor class SimpleOverlay(urwid.Overlay): def __init__(self, master, widget, parent, width, valign="middle...
make_help
<|file_name|>ordereddict.py<|end_file_name|><|fim▁begin|>#!/usr/bin/env python """Backport from python2.7 to python <= 2.6.""" from itertools import repeat as _repeat, chain as _chain, starmap as _starmap try: from itertools import izip_longest as _zip_longest except ImportError: from itertools import izip ...
def keys(self): return list(self)
<|file_name|>ordereddict.py<|end_file_name|><|fim▁begin|>#!/usr/bin/env python """Backport from python2.7 to python <= 2.6.""" from itertools import repeat as _repeat, chain as _chain, starmap as _starmap try: from itertools import izip_longest as _zip_longest except ImportError: from itertools import izip ...
fillvalue = kwds.get('fillvalue') def sentinel(counter = ([fillvalue]*(len(args)-1)).pop): yield counter() # yields the fillvalue, or raises IndexError fillers = _repeat(fillvalue) iters = [_chain(it, sentinel(), fillers) for it in args] try: for t...
<|file_name|>ordereddict.py<|end_file_name|><|fim▁begin|>#!/usr/bin/env python """Backport from python2.7 to python <= 2.6.""" from itertools import repeat as _repeat, chain as _chain, starmap as _starmap try: from itertools import izip_longest as _zip_longest except ImportError: from itertools import izip ...
yield counter() # yields the fillvalue, or raises IndexError
<|file_name|>ordereddict.py<|end_file_name|><|fim▁begin|>#!/usr/bin/env python """Backport from python2.7 to python <= 2.6.""" from itertools import repeat as _repeat, chain as _chain, starmap as _starmap try: from itertools import izip_longest as _zip_longest except ImportError: from itertools import izip ...
def __init__(self, *args, **kwds): if len(args) > 1: raise TypeError('expected at most 1 arguments, got %d' % len(args)) if not hasattr(self, '_keys'): self._keys = [] self.update(*args, **kwds) def clear(self): del self._keys[:] dict.clear(self) ...
<|file_name|>ordereddict.py<|end_file_name|><|fim▁begin|>#!/usr/bin/env python """Backport from python2.7 to python <= 2.6.""" from itertools import repeat as _repeat, chain as _chain, starmap as _starmap try: from itertools import izip_longest as _zip_longest except ImportError: from itertools import izip ...
if len(args) > 1: raise TypeError('expected at most 1 arguments, got %d' % len(args)) if not hasattr(self, '_keys'): self._keys = [] self.update(*args, **kwds)
<|file_name|>ordereddict.py<|end_file_name|><|fim▁begin|>#!/usr/bin/env python """Backport from python2.7 to python <= 2.6.""" from itertools import repeat as _repeat, chain as _chain, starmap as _starmap try: from itertools import izip_longest as _zip_longest except ImportError: from itertools import izip ...
del self._keys[:] dict.clear(self)
<|file_name|>ordereddict.py<|end_file_name|><|fim▁begin|>#!/usr/bin/env python """Backport from python2.7 to python <= 2.6.""" from itertools import repeat as _repeat, chain as _chain, starmap as _starmap try: from itertools import izip_longest as _zip_longest except ImportError: from itertools import izip ...
if key not in self: self._keys.append(key) dict.__setitem__(self, key, value)
<|file_name|>ordereddict.py<|end_file_name|><|fim▁begin|>#!/usr/bin/env python """Backport from python2.7 to python <= 2.6.""" from itertools import repeat as _repeat, chain as _chain, starmap as _starmap try: from itertools import izip_longest as _zip_longest except ImportError: from itertools import izip ...
dict.__delitem__(self, key) self._keys.remove(key)
<|file_name|>ordereddict.py<|end_file_name|><|fim▁begin|>#!/usr/bin/env python """Backport from python2.7 to python <= 2.6.""" from itertools import repeat as _repeat, chain as _chain, starmap as _starmap try: from itertools import izip_longest as _zip_longest except ImportError: from itertools import izip ...
return iter(self._keys)
<|file_name|>ordereddict.py<|end_file_name|><|fim▁begin|>#!/usr/bin/env python """Backport from python2.7 to python <= 2.6.""" from itertools import repeat as _repeat, chain as _chain, starmap as _starmap try: from itertools import izip_longest as _zip_longest except ImportError: from itertools import izip ...
return reversed(self._keys)
<|file_name|>ordereddict.py<|end_file_name|><|fim▁begin|>#!/usr/bin/env python """Backport from python2.7 to python <= 2.6.""" from itertools import repeat as _repeat, chain as _chain, starmap as _starmap try: from itertools import izip_longest as _zip_longest except ImportError: from itertools import izip ...
if not self: raise KeyError('dictionary is empty') key = self._keys.pop() value = dict.pop(self, key) return key, value
<|file_name|>ordereddict.py<|end_file_name|><|fim▁begin|>#!/usr/bin/env python """Backport from python2.7 to python <= 2.6.""" from itertools import repeat as _repeat, chain as _chain, starmap as _starmap try: from itertools import izip_longest as _zip_longest except ImportError: from itertools import izip ...
items = [[k, self[k]] for k in self] inst_dict = vars(self).copy() inst_dict.pop('_keys', None) return (self.__class__, (items,), inst_dict)
<|file_name|>ordereddict.py<|end_file_name|><|fim▁begin|>#!/usr/bin/env python """Backport from python2.7 to python <= 2.6.""" from itertools import repeat as _repeat, chain as _chain, starmap as _starmap try: from itertools import izip_longest as _zip_longest except ImportError: from itertools import izip ...
try: return self[key] except KeyError: self[key] = default return default
<|file_name|>ordereddict.py<|end_file_name|><|fim▁begin|>#!/usr/bin/env python """Backport from python2.7 to python <= 2.6.""" from itertools import repeat as _repeat, chain as _chain, starmap as _starmap try: from itertools import izip_longest as _zip_longest except ImportError: from itertools import izip ...
if hasattr(other, "keys"): for key in other.keys(): self[key] = other[key] else: for key, value in other: self[key] = value for key, value in kwds.items(): self[key] = value
<|file_name|>ordereddict.py<|end_file_name|><|fim▁begin|>#!/usr/bin/env python """Backport from python2.7 to python <= 2.6.""" from itertools import repeat as _repeat, chain as _chain, starmap as _starmap try: from itertools import izip_longest as _zip_longest except ImportError: from itertools import izip ...
try: value = self[key] except KeyError: if default is self.__marker: raise return default else: del self[key] return value
<|file_name|>ordereddict.py<|end_file_name|><|fim▁begin|>#!/usr/bin/env python """Backport from python2.7 to python <= 2.6.""" from itertools import repeat as _repeat, chain as _chain, starmap as _starmap try: from itertools import izip_longest as _zip_longest except ImportError: from itertools import izip ...
return list(self)
<|file_name|>ordereddict.py<|end_file_name|><|fim▁begin|>#!/usr/bin/env python """Backport from python2.7 to python <= 2.6.""" from itertools import repeat as _repeat, chain as _chain, starmap as _starmap try: from itertools import izip_longest as _zip_longest except ImportError: from itertools import izip ...
return [self[key] for key in self]