You are using pip version 7.1.0, however version 7.1.2 is available.
You should consider upgrading via the 'pip install --upgrade pip' command.
Collecting lxml==3.4.4
Downloading lxml-3.4.4.tar.gz (3.5MB)
100% |โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ| 3.5MB 142kB/s
Building wheels for collected packages: lxml
Running setup.py bdist_wheel for lxml
Complete output from command /Users/msikma/.virtualenvs/rei3/bin/python3.4 -c "import setuptools;__file__='/private/var/folders/hb/9_3q3d1546bf7ffzlfgz_yhr0000gn/T/pip-build-3mfhlj15/lxml/setup.py';exec(compile(open(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" bdist_wheel -d /var/folders/hb/9_3q3d1546bf7ffzlfgz_yhr0000gn/T/tmpftx5pynlpip-wheel-:
Building lxml version 3.4.4.
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
#!/usr/bin/env python | |
import argparse | |
argparser = argparse.ArgumentParser(add_help=True) | |
argparser.description = 'Description.' | |
argparser.epilog = 'Epilog.' | |
argparser.add_argument('--version', action='version', version='1.0.0') | |
subparsers = argparser.add_subparsers( | |
title='Positional arguments', | |
dest='posarg' |
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
var fs = require('fs'); | |
var path = require('path'); | |
var WebpackIsomorphicTools = require('webpack-isomorphic-tools'); | |
var isoToolsOptions = require('../../tasks/webpack/webpack-isomorphic-tools'); | |
var babelOptions = JSON.parse(fs.readFileSync('./.babelrc', 'utf8')); | |
// todo: describe | |
var pipingOptions = { | |
hook: true, |
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
#!/usr/bin/env python | |
import xml.etree.ElementTree as ET | |
xml = '''<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE TestXml [ | |
<!ELEMENT TestXml (TestNode*)> | |
<!ELEMENT TestNode (#PCDATA)> | |
<!ENTITY testent "test entity"> | |
]> |
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
#!/usr/bin/env python | |
import untangle | |
xml = '''<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE TestXml [ | |
<!ELEMENT TestXml (TestNode*)> | |
<!ELEMENT TestNode (#PCDATA)> | |
<!ENTITY testent "test entity"> | |
]> |
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
// hello | |
var ArgumentParser = require('argparse').ArgumentParser; | |
var ArrFormatter = require('./arr-formatter'); | |
// Data from our package, where we keep app-specific configuration. | |
var packageData = require('../../package.json'); | |
var appConfig = packageData._app; | |
var appVersion = packageData.name + ' (' + packageData.version + ')'; | |
var appArgs = require('./run-args'); |
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
All DOM properties of a <span> element. | |
accessKey: "" | |
attributes: NamedNodeMap | |
baseURI: "https://tweetdeck.twitter.com/" | |
childElementCount: 0 | |
childNodes: NodeList[1] | |
children: HTMLCollection[0] | |
classList: DOMTokenList[2] | |
className: "username txt-mute" |
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 latest_jmdict_timestamp(): | |
''' | |
Check the timestamp of the latest JMDict file. | |
''' | |
request = urllib.request.Request(JMDICT_URL) | |
response = urllib.request.urlopen(request) | |
return response.headers['last-modified'] |
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
$ babel --version | |
5.4.7 | |
$ cat test.js | |
async function foo() { | |
} | |
$ babel --optional es7.asyncFunctions test.js | |
/Users/msikma/Projects/pksprite/node_modules/babel-core/lib/babel/transformation/file/index.js:604 | |
throw err; | |
^ |
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
/usr/local/djgpp/bin/i586-pc-msdosdjgpp-gcc -c -o vendor/allegro/src/allegro.o vendor/allegro/src/allegro.c -Ivendor/allegro/include -Ivendor/allegro | |
In file included from vendor/allegro/include/allegro/internal/alconfig.h:65:0, | |
from vendor/allegro/include/allegro/base.h:39, | |
from vendor/allegro/include/allegro.h:25, | |
from vendor/allegro/src/allegro.c:23: | |
vendor/allegro/include/allegro/platform/astdbool.h:29:23: error: two or more data types in declaration specifiers | |
typedef unsigned char _Bool; | |
^ | |
vendor/allegro/include/allegro/platform/astdbool.h:29:1: warning: useless type name in empty declaration | |
typedef unsigned char _Bool; |