¡@

Home 

python Programming Glossary: surprising

Why does Python say this Netscape cookie file isn't valid?

http://stackoverflow.com/questions/11529428/why-does-python-say-this-netscape-cookie-file-isnt-valid

would match that format so the error you see is quite surprising. Note that your file is opened with a simple open filename call..

benchmarks: does python have a faster way of walking a network folder?

http://stackoverflow.com/questions/13138160/benchmarks-does-python-have-a-faster-way-of-walking-a-network-folder

the Python equivalent is implemented in Python . It's not surprising that Python is less performant than C but the approach used..

Difference between __str__ and __repr__ in Python

http://stackoverflow.com/questions/1436703/difference-between-str-and-repr-in-python

share improve this question Alex summarized well but surprisingly was too succinct. First let me reiterate the main points in.. ™s __str__ uses contained objects __repr__ This seems surprising doesn ™t it It is a little but how readable would moshe is 3..

Why doesn't Python's mmap work with large files?

http://stackoverflow.com/questions/1661986/why-doesnt-pythons-mmap-work-with-large-files

is that mmap doesn't work for large files This is very surprising to me as I thought it was perhaps the most obvious application...

Best way to decode unknown unicoding encoding in Python 2.5

http://stackoverflow.com/questions/1715772/best-way-to-decode-unknown-unicoding-encoding-in-python-2-5

but I don't always know what encoding it's meant to be a surprising number lie about it . The code below easily shows what I've..

Why are there dummy modules in sys.modules?

http://stackoverflow.com/questions/1958417/why-are-there-dummy-modules-in-sys-modules

'logging.types' # and perhaps even more surprising import traceback traceback is sys.modules 'logging.traceback'..

Lexical closures in Python

http://stackoverflow.com/questions/233673/lexical-closures-in-python

example mindfully avoids lambda . It prints 4 4 4 which is surprising. I'd expect 0 2 4 . This equivalent Perl code does it right..

Accessing a decorator in a parent class from the child in Python

http://stackoverflow.com/questions/3421337/accessing-a-decorator-in-a-parent-class-from-the-child-in-python

throws an unbound method _deco error which isn't really surprising. Any idea how to do this I'd really like to encapsulate the..

Why are scripting languages (e.g. Perl, Python, Ruby) not suitable as shell languages? [closed]

http://stackoverflow.com/questions/3637668/why-are-scripting-languages-e-g-perl-python-ruby-not-suitable-as-shell-lang

best current shell is Microsoft PowerShell which is very surprising considering that for several decades now Microsoft has continually..

Embedding Python in an iPhone app

http://stackoverflow.com/questions/3691655/embedding-python-in-an-iphone-app

does one go about doing this All the existing discussion unsurprisingly refers to jailbreaking. Older question Can I write native.. you correctly state making it small will be critical. Not surprising either is that you aren't the first person to want to do this..

Python: max/min builtin functions depend on parameter order

http://stackoverflow.com/questions/4237914/python-max-min-builtin-functions-depend-on-parameter-order

and seems completely unreasonable. I found an even more surprising consequence of this behavior so I just posted a related question..

Abstract methods in Python

http://stackoverflow.com/questions/4382945/abstract-methods-in-python

now I have been unable to understand in Python which is surprising to me atleast. I have a prototype which follow class Shape def..

twisted conch filetransfer

http://stackoverflow.com/questions/5195427/twisted-conch-filetransfer

of twisted.conch.client.default.connect in a slightly less surprising interface from twisted.internet.defer import Deferred from twisted.conch.scripts.cftp..

How to make an unaware datetime timezone aware in python

http://stackoverflow.com/questions/7065164/how-to-make-an-unaware-datetime-timezone-aware-in-python

cannot be applied to a naive datetime It's not terribly surprising this failed since it's actually trying to do a conversion. Replace..

virtualenv relocatable — does it really work

http://stackoverflow.com/questions/7153113/virtualenv-relocatable-does-it-really-work

relocatable is an experimental option so it's not surprising you are having difficulties with it. That said did you remember..

Why can't I use a list as a dict key in python?

http://stackoverflow.com/questions/7257588/why-cant-i-use-a-list-as-a-dict-key-in-python

sys and are compared by that anyway. Therefore it's less surprising or even expected that they when used as dict keys compare by..

SQLite Performance Benchmark — why is :memory: so slow…only 1.5X as fast as disk?

http://stackoverflow.com/questions/764710/sqlite-performance-benchmark-why-is-memory-so-slow-only-1-5x-as-fast-as-d

2Mb. Since this is about 75 to 90 of your data it isn't surprising that the two number are very similar. My guess is that in addition..

matplotlib: adding second axes() with transparent background?

http://stackoverflow.com/questions/7761778/matplotlib-adding-second-axes-with-transparent-background

'none' ax plt.axes fig.add_subplot ax ax.plot x y This is surprising because I thought the background of one would be overlaid on..

Why do std::string operations perform poorly?

http://stackoverflow.com/questions/8310039/why-do-stdstring-operations-perform-poorly

0m3.115s user 0m3.084s sys 0m0.048s in C g Ofast It's not surprising that Nodejs performas better than Python or Java. But I expected..

Checking for NaN presence in a container

http://stackoverflow.com/questions/9904699/checking-for-nan-presence-in-a-container

in the sense of id to another NaN object. This not really surprising Python doesn't guarantee such identity. In fact I never saw..