This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/.hgignore b/.hgignore | |
new file mode 100644 | |
--- /dev/null | |
+++ b/.hgignore | |
@@ -0,0 +1,9 @@ | |
+syntax:glob | |
+ | |
+*.pyc | |
+*.*~ | |
+*.*.orig |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
import json | |
import sys | |
import io | |
import logging | |
logging.basicConfig(format='%(levelname)s:%(funcName)s:%(message)s', | |
level=logging.INFO) | |
import requests |
This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
check: glfw | |
make[1]: Entering directory `/home/matej/archiv/knihovna/repos/tmp/servo/build/x86_64-unknown-linux-gnu/src/support/glfw/glfw' | |
make[1]: Nothing to be done for `check'. | |
make[1]: Leaving directory `/home/matej/archiv/knihovna/repos/tmp/servo/build/x86_64-unknown-linux-gnu/src/support/glfw/glfw' | |
check: glfw-rs | |
make[1]: Entering directory `/home/matej/archiv/knihovna/repos/tmp/servo/build/x86_64-unknown-linux-gnu/src/support/glfw/glfw-rs' | |
make[1]: Nothing to be done for `check'. | |
make[1]: Leaving directory `/home/matej/archiv/knihovna/repos/tmp/servo/build/x86_64-unknown-linux-gnu/src/support/glfw/glfw-rs' | |
check: rust-fontconfig | |
make[1]: Entering directory `/home/matej/archiv/knihovna/repos/tmp/servo/build/x86_64-unknown-linux-gnu/src/platform/linux/rust-fontconfig' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"><head> | |
<meta http-equiv="content-type" content="text/html; charset=UTF-8"> | |
<meta name="robots" content="NONE,NOARCHIVE"> | |
<title>AssertionError at /</title> | |
<style type="text/css"> | |
html * { padding:0; margin:0; } | |
body * { padding:10px 20px; } | |
body * * { padding:0; } | |
body { font:small sans-serif; } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From c372494b2a6d0e2b11bddf9a976d7431e3cc6816 Mon Sep 17 00:00:00 2001 | |
From: =?UTF-8?q?Mat=C4=9Bj=20Cepl?= <[email protected]> | |
Date: Fri, 10 Aug 2012 01:14:06 +0200 | |
Subject: [PATCH] Add configuration files. | |
MIME-Version: 1.0 | |
Content-Type: text/plain; charset=UTF-8 | |
Content-Transfer-Encoding: 8bit | |
* webapp/config.inc.php | |
* .gitignore |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--------- beginning of /dev/log/system | |
D/MobileDataStateTracker( 601): ims: Received state=DISCONNECTED, old=DISCONNECTED, reason=dataEnabled | |
D/MobileDataStateTracker( 601): mms: Broadcast received: android.intent.action.ANY_DATA_STATE apnType=mms | |
D/MobileDataStateTracker( 601): mms: Received state=DISCONNECTED, old=DISCONNECTED, reason=dataEnabled | |
D/MobileDataStateTracker( 601): cbs: Broadcast received: android.intent.action.ANY_DATA_STATE apnType=cbs | |
D/MobileDataStateTracker( 601): cbs: Received state=DISCONNECTED, old=DISCONNECTED, reason=dataEnabled | |
D/MobileDataStateTracker( 601): hipri: Broadcast received: android.intent.action.ANY_DATA_STATE apnType=hipri | |
D/MobileDataStateTracker( 601): hipri: Received state=CONNECTED, old=CONNECTING, reason=dataEnabled | |
D/MobileDataStateTracker( 601): hipri: setDetailed state, old =CONNECTING and new state=CONNECTED | |
D/ConnectivityService( 601): ConnectivityChange for mobile_hipri: CONNECTED/CONNECTED |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--------- beginning of /dev/log/system | |
I/Vold ( 123): Vold 2.1 (the revenge) firing up | |
D/Vold ( 123): Volume sdcard state changing -1 (Initializing) -> 0 (No-Media) | |
D/Vold ( 123): Volume emmc state changing -1 (Initializing) -> 0 (No-Media) | |
D/Vold ( 123): Volume sdcard state changing 0 (No-Media) -> 2 (Pending) | |
D/Vold ( 123): Volume sdcard state changing 2 (Pending) -> 1 (Idle-Unmounted) | |
W/Vold ( 123): Duplicate state (1) | |
W/Vold ( 123): Duplicate state (1) | |
W/Vold ( 123): Duplicate state (1) | |
W/Vold ( 123): Duplicate state (1) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from behave import * | |
@given('we have behave installed') | |
def step_impl(context): | |
pass | |
@when('we implement a test') | |
def step_impl(context): | |
assert True is not False |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- a/behave/model.py | |
+++ b/behave/model.py | |
@@ -1203,7 +1203,7 @@ class Step(BasicStatement, Replayable): | |
if capture: | |
# -- CAPTURE-ONLY: Non-nested step failures. | |
if runner.config.stdout_capture: | |
- output = runner.stdout_capture.getvalue() | |
+ output = runner.stdout_capture.getvalue().encode('utf_8') | |
if output: | |
error += '\nCaptured stdout:\n' + output |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
import re | |
import logging | |
import sys | |
import email | |
import time | |
from collections import OrderedDict as odict | |
logging.basicConfig(format='%(levelname)s:%(funcName)s:%(message)s', | |
level=logging.INFO) |