Skip to content

Instantly share code, notes, and snippets.

View joshthecoder's full-sized avatar

Joshua Roesslein joshthecoder

View GitHub Profile
def while_true():
i = 0
while True:
i += 1
if i > 10000:
break
def while_1():
i = 0
while 1:
diff --git a/pystache/view.py b/pystache/view.py
index 2e5ee41..0a4ac9d 100644
--- a/pystache/view.py
+++ b/pystache/view.py
@@ -34,7 +34,7 @@ class View(object):
return template
def template_name(self):
- return self.__class__.__name__
+ return self.__class__.__name__.lower()
diff --git a/bottle.py b/bottle.py
index 48ceea4..ddf7ad4 100644
--- a/bottle.py
+++ b/bottle.py
@@ -608,6 +608,9 @@ class ServerAdapter(WSGIAdapter):
def __repr__(self):
return "%s (%s:%d)" % (self.__class__.__name__, self.host, self.port)
+ def stop(self):
+ return
./build/linux/Drillbit/Resources/test_harness/test_harness/test_harness --profile="./build/linux/Drillbit/Resources/test_results/python.prof" --logpath="./build/linux/Drillbit/Resources/test_results/python.log" --bundled-component-override="./build/linux/Drillbit" --debug --results-dir="./build/linux/Drillbit/Resources/test_results" --attach-debugger --g-fatal-warning