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
| marca@live-web01:/home/marca/dev/git-repos$ git clone https://github.com/satanas/Turpial.git | |
| Cloning into 'Turpial'... | |
| remote: Counting objects: 9229, done. | |
| remote: Compressing objects: 100% (2233/2233), done. | |
| remote: Total 9229 (delta 6299), reused 9010 (delta 6101) | |
| Receiving objects: 100% (9229/9229), 3.58 MiB | 459 KiB/s, done. | |
| Resolving deltas: 100% (6299/6299), done. | |
| marca@live-web01:/home/marca/dev/git-repos$ git clone git://github.com/satanas/libturpial.git | |
| Cloning into 'libturpial'... | |
| remote: Counting objects: 1586, done. |
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
| #!/bin/sh | |
| osascript \ | |
| -e 'tell application "iTunes"' \ | |
| -e '(get name of current track) & "\n" & (get artist of current track)' \ | |
| -e 'end tell' |
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 | |
| """ | |
| Install a package from your local pip download cache without having to touch | |
| the 'net at all. | |
| You'll need to be using a pip download cache; that is, you'll need the | |
| following in your ~/.pip/pip.cfg: | |
| [install] |
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
| #!/bin/sh | |
| echo mkdir -p ${HOME}/.buildout | |
| mkdir -p ${HOME}/.buildout | |
| cat <<__END__ > ${HOME}/.buildout/default.cfg | |
| [buildout] | |
| eggs-directory = ${HOME}/.buildout/eggs | |
| __END__ |
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
| (graphite.py27.venv)marca@live-web01:/opt/graphite$ export LD_LIBRARY_PATH=/usr/local/lib | |
| (graphite.py27.venv)marca@live-web01:/opt/graphite$ export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig | |
| ### Build and install pixman-0.24.4 from source ### | |
| ### Build and install cairo-1.12.0 from source #### | |
| (graphite.py27.venv)marca@live-web01:/opt/graphite/py2cairo-1.10.0$ LDFLAGS="-lm -ldl -lutil" ./waf configure --prefix=/usr/local | |
| ./options() | |
| Setting top to : /opt/graphite/py2cairo-1.10.0 | |
| Setting out to : /opt/graphite/py2cairo-1.10.0/build_directory |
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/Modules/_sqlite/connection.c b/Modules/_sqlite/connection.c | |
| index 26678c7..a646513 100644 | |
| --- a/Modules/_sqlite/connection.c | |
| +++ b/Modules/_sqlite/connection.c | |
| @@ -549,7 +549,7 @@ void _pysqlite_set_result(sqlite3_context* context, PyObject* py_val) | |
| } else if (py_val == Py_None) { | |
| sqlite3_result_null(context); | |
| } else if (PyInt_Check(py_val)) { | |
| - sqlite3_result_int64(context, (sqlite3_int64)PyInt_AsLong(py_val)); | |
| + sqlite3_result_int64(context, (sqlite_int64)PyInt_AsLong(py_val)); |
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
| ~/dev/hg-repos/cpython$ ./python.exe -m test.regrtest -j3 |
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
| (require '123-menu) | |
| (123-menu-defmenu marc-menu-root | |
| ("a" "[A]bbrev" '123-menu-display-menu-marc-menu-abbrev) | |
| ("b" "[B]uffer" '123-menu-display-menu-marc-menu-buffer) | |
| ("c" "[C]ode" '123-menu-display-menu-marc-menu-code) | |
| ("e" "[E]val" '123-menu-display-menu-marc-menu-eval) | |
| ("f" "[F]ile" '123-menu-display-menu-marc-menu-file) | |
| ("m" "[M]arks" '123-menu-display-menu-marc-menu-marks) | |
| ("r" "[R]ect" '123-menu-display-menu-marc-menu-rect) |
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
| ============================= test session starts ============================== | |
| platform darwin -- Python 2.7.3 -- pytest-2.2.3 | |
| collecting ... collected 7 items | |
| testing/test_collection.py FFFFFFF | |
| =================================== FAILURES =================================== | |
| ____________________ Test_collection.test_check_collect_foo ____________________ | |
| self = <test_collection.Test_collection instance at 0x1013407a0> |
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
| - tox prepare sdist package | |
| sdist-make: using /Users/marca/dev/git-repos/pyramid/setup.py | |
| - py33 prepareenv /Users/marca/dev/git-repos/pyramid/.tox/py33 | |
| reusing: existing environment matches | |
| - tox sdist-reinst /Users/marca/dev/git-repos/pyramid/.tox/dist/pyramid-1.4dev.zip | |
| - py33 testing | |
| running test | |
| running egg_info | |
| writing top-level names to pyramid.egg-info/top_level.txt | |
| writing requirements to pyramid.egg-info/requires.txt |