This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def while_true(): | |
i = 0 | |
while True: | |
i += 1 | |
if i > 10000: | |
break | |
def while_1(): | |
i = 0 | |
while 1: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
./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 |
NewerOlder