¡@

Home 

python Programming Glossary: undocumented

How to reduce color palette with PIL

http://stackoverflow.com/questions/1065945/how-to-reduce-color-palette-with-pil

share improve this question That's easy just use the undocumented colors argument result image.convert 'P' palette Image.ADAPTIVE..

How should I understand the output of dis.dis?

http://stackoverflow.com/questions/12673074/how-should-i-understand-the-output-of-dis-dis

in little endian order so that 0100 is the number 1. The undocumented opcode module contains tables opname giving you the name for..

testing whether a Numpy array contains a given row

http://stackoverflow.com/questions/14766194/testing-whether-a-numpy-array-contains-a-given-row

results. The __contains__ method of ndarray seems to be undocumented. a np.array 1 2 10 20 100 200 np.array 1 2 in a True np.array..

Return value while using cProfile

http://stackoverflow.com/questions/1584425/return-value-while-using-cprofile

Handling of duplicate indices in NumPy assignments

http://stackoverflow.com/questions/15973827/handling-of-duplicate-indices-in-numpy-assignments

. So as far as I can tell it works currently but it is undocumented for all I know so if you actually think that this should be..

Pyserial problem with Arduino - works with the Python shell but not in a program

http://stackoverflow.com/questions/1618141/pyserial-problem-with-arduino-works-with-the-python-shell-but-not-in-a-program

Absolute import failing in subpackage that shadows a stdlib package name

http://stackoverflow.com/questions/1959188/absolute-import-failing-in-subpackage-that-shadows-a-stdlib-package-name

parent package. It really looks like either a bug or an undocumented behaviour of the new absolute import support new as of Python..

How can I detect and track people using OpenCV?

http://stackoverflow.com/questions/2188646/how-can-i-detect-and-track-people-using-opencv

question The latest SVN version of OpenCV contains an undocumented implementation of HOG based pedestrian detection. It even comes..

How do I render *parts* of a svg file?

http://stackoverflow.com/questions/2321155/how-do-i-render-parts-of-a-svg-file

SVG is called RSVG. It has python bindings but they are undocumented and they don't wrap the rsvg_handle_get_pixbuf_sub and rsvg_handle_render_cairo_sub..

How do I unescape HTML entities in a string in Python 3.1?

http://stackoverflow.com/questions/2360598/how-do-i-unescape-html-entities-in-a-string-in-python-3-1

entities share improve this question You could use the undocumented function html.parser.HTMLParser.unescape In Python3 import html.parser..

Recursive list comprehension in Python?

http://stackoverflow.com/questions/2638478/recursive-list-comprehension-in-python

stable way to access the list being built up that peculiar undocumented name '_ 1 ' deliberately chosen not to be a valid identifier..

globals and locals in python exec()

http://stackoverflow.com/questions/2904274/globals-and-locals-in-python-exec

Well I believe it's either an implementation bug or an undocumented design decision. The crux of the issue is that a name binding..

Django equivalent for count and group by

http://stackoverflow.com/questions/327807/django-equivalent-for-count-and-group-by

aggregation support was already there in 1.0 it's just undocumented unsupported and doesn't have a friendly API on top of it yet...

Using Django time/date widgets in custom form

http://stackoverflow.com/questions/38601/using-django-time-date-widgets-in-custom-form

to caution you against doing this at all. It's relying on undocumented internal implementation details of the admin is likely to break..

Embedding Python on Windows: why does it have to be a DLL?

http://stackoverflow.com/questions/3953039/embedding-python-on-windows-why-does-it-have-to-be-a-dll

modules that are themselves DLL ™s. This is the first key undocumented fact. Instead link to pythonNN.dll it is typically installed..

Getting data from ctypes array into numpy

http://stackoverflow.com/questions/4355524/getting-data-from-ctypes-array-into-numpy

one way of creating the buffer object in your post via the undocumented int_asbuffer function buffer numpy.core.multiarray.int_asbuffer..

Is it possible to programmatically construct a Python stack frame and start execution at an arbitrary point in the code?

http://stackoverflow.com/questions/541329/is-it-possible-to-programmatically-construct-a-python-stack-frame-and-start-exec

stack frames programtically. Be warned though it relies on undocumented and private APIs. http svn.python.org view python trunk Modules..

HTML Entity Codes to Text

http://stackoverflow.com/questions/663058/html-entity-codes-to-text

functionality in the standard library. It is unfortunately undocumented import HTMLParser h HTMLParser.HTMLParser h.unescape 'alpha..

Changing brightness of the Macbook(Pro) keyboard backlight

http://stackoverflow.com/questions/991813/changing-brightness-of-the-macbookpro-keyboard-backlight

share improve this question Amit Singh discusses these undocumented APIs in this online bonus chapter but does so using C I'm not..