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
[Timer] Timings: | |
[Timer] annotate --- 0.7 s | |
[Timer] rtype_lltype --- 0.9 s | |
[Timer] backendopt_lltype --- 0.1 s | |
[Timer] stackcheckinsertion_lltype --- 0.0 s | |
[Timer] database_c --- 9.1 s | |
[Timer] source_c --- 1.5 s | |
[Timer] compile_c --- 1.1 s | |
[Timer] ========================================= | |
[Timer] Total: --- 13.6 s |
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
[translation:ERROR] Error: | |
[translation:ERROR] Traceback (most recent call last): | |
[translation:ERROR] File "../pypy/pypy/translator/goal/translate.py", line 308, in main | |
[translation:ERROR] drv.proceed(goals) | |
[translation:ERROR] File "/Users/neppord/pypy/pypy/translator/driver.py", line 810, in proceed | |
[translation:ERROR] return self._execute(goals, task_skip = self._maybe_skip()) | |
[translation:ERROR] File "/Users/neppord/pypy/pypy/translator/tool/taskengine.py", line 116, in _execute | |
[translation:ERROR] res = self._do(goal, taskcallable, *args, **kwds) | |
[translation:ERROR] File "/Users/neppord/pypy/pypy/translator/driver.py", line 286, in _do | |
[translation:ERROR] res = func() |
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
# Sphinx version: 1.0.7 | |
# Python version: 2.7.1 | |
# Docutils version: 0.7 release | |
# Jinja2 version: 2.5.5 | |
Traceback (most recent call last): | |
File "c:\Python27\lib\site-packages\sphinx-1.0.7-py2.7.egg\sphinx\cmdline.py", line 188, in main | |
app.build(force_all, filenames) | |
File "c:\Python27\lib\site-packages\sphinx-1.0.7-py2.7.egg\sphinx\application.py", line 207, in build | |
self.builder.build_update() | |
File "c:\Python27\lib\site-packages\sphinx-1.0.7-py2.7.egg\sphinx\builders\__init__.py", line 193, in build_update |
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 FooClass = function() | |
{ | |
x = function() { /* Class constructor */ }; | |
x.prototype.foo = "bar"; | |
x.prototype.__init__ = function() | |
{ | |
this.something = "other"; | |
}; | |
x.prototype.__call__ = function() { | |
return 42; |
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
/script | |
if GetMerchantNumItems()>0 then | |
for b= 0,4,1 do | |
for s = 1,GetContainerNumSlots(b),1 do | |
local n = GetContainerItemLink(b,s); | |
if n and n:find("ff9d9d9d") then | |
DEFAULT_CHAT_FRAME:AddMessage("selling:"..n); | |
UseContainerItem(b,s) | |
end; | |
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
from foo import foo | |
def bar(a=0): | |
print "bar" | |
if a: | |
foo() |
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
table { | |
border-collapse:collapse; | |
border-spacing:0px; | |
} | |
td{ | |
text-align: center; | |
vertical-align: middle; | |
padding:5px; | |
} |
NewerOlder