The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
42 views

How to check variable type using “type” function in Sikuli

Sikuli has its own function type for typing. Is there any way to invoke python (jython) function type? Module builtins can’t be imported. Of course I can use isinstance instead but I am just curious ...
-2
votes
0answers
166 views

How can I add the __import__ function back into __builtins__? [closed]

I need to use __import__ through a call to eval, but __import__ and reload have both been deleted from __builtins__. Is there any way to add __import__ back in? edit: I'm not writing the script I ...
1
vote
1answer
55 views

gcc __builtin_expect doesn't seem to generate a correct code

The following two code snippets produces exactly the same assembly code, even though branches are enclosed with different branch predictions. Let's say that we have test0.c #define likely(x) ...
0
votes
1answer
61 views

Why can't I use vars() when I try to call it within a function?

I have a dict of strings, and those strings correspond to function names. I'm trying to use vars() to assign those strings to variables that I can then use for function calls. I'm able to get vars() ...
1
vote
1answer
444 views

When __builtin_memcpy is replaced with libc's memcpy

There is a version of C99/posix memcpy function in GCC: __builtin_memcpy. Sometimes it can be replaced by GCC to inline version of memcpy and in other cases it is replaced by call to libc's memcpy. ...
4
votes
3answers
1k views

Is it normal that the gcc atomic builtins are so slow?

I have an application where I have to increment some statistics counters in a multi-threaded method. The incrementing has to be thread-safe, so I decided to use the gcc atomic builtins ...
1
vote
0answers
71 views

ActivePython 2.7.2 - how to install time as a builtin package?

I have installed ActivePython 2.7.2 in my linux machine. I need time to be builtin module instead of being loaded from lib-dynload/time.so On searching Stackoverflow archives I found that you can do ...
0
votes
1answer
301 views

Using multiple built-ins in FreeMarker

I'm new to FreeMarker and have string I want to perform two built-ins on. For example, I have a string that needs all instances of the pipe symbol replacing with a comma and capitalizing the first ...
5
votes
4answers
1k views

itertools.ifilter Vs. filter Vs. list comprehensions

I am trying to become more familiar with the itertools module and have found a function called ifilter. From what I understand, it filters and iterable based on the given function and returns an ...
0
votes
1answer
175 views

Merging maps in Freemarker

I'm unable to find any documentation on how to merge two hash maps. This is what I am trying to acheive <select <@render_attrs commonattrs.merge({"class":"select"}) /> > .... <#macro ...
1
vote
1answer
274 views

Calling MSVC builtin/intrinsics for C math functions

For GCC and Clang, I can easily do this: // absolute value inline constexpr int abs(const int number) { return __builtin_abs(number); } inline constexpr long abs(const long number) ...
2
votes
6answers
456 views

Python: What's the fastest way to zip right to left, and is there no builtin for this?

Given 2 sequences of different lengths: In [931]: a = [1,2,3] In [932]: b = [4,5,6,7] This is what i want In [933]: c = zip(reversed(a),reversed(b)) In [934]: [x for x in reversed(c)] Out[934]: ...
1
vote
3answers
88 views

Convert an Int to an array of Ints indicating positions of bits in C

So if I had an int, say 0000100101101001, it should be turned to an array like {0,3,5,6,8,11}. I am using a convoluted system using clz (count leading zeros) and bit masks to do it now, but something ...
1
vote
1answer
398 views

Pydev Undefined Variable “list”

Every now and then when I try to add a new library using easy_install, my PyDev acts incredibly strange. In fact, I am certain I dealt with this exact issue before, but am unsure how I did it. I ...
7
votes
4answers
257 views

Is there a python builtin to create tuples from multiple lists?

Is there a python builtin that does the same as tupler for a set of lists, or something similar: def tupler(arg1, *args): length = min([len(arg1)]+[len(x) for x in args]) out = [] for i ...
5
votes
2answers
253 views

Using a likely/unlikely as argument of return in linux kernel

Just see this construction in the linux kernel, and I can't get what does it mean. 110 return unlikely(sl->sequence != start); I know that likely/unlikely are made with __builtin_expect ...
1
vote
1answer
537 views

Backport of builtin function bin() for python 2.4

I wrote a program that uses builtin function bin(), but this function is new in Python version 2.6 and I would like to run this application also in Python versions 2.4 and 2.5. Is there some backport ...
5
votes
4answers
1k views

Why I can call 'print' from 'eval'

For code: #!/usr/bin/python src = """ print '!!!' import os """ obj = compile(src, '', 'exec') eval(obj, {'__builtins__': False}) I get output: !!! Traceback (most recent call last): File ...
1
vote
1answer
137 views

python: retrieve names of all builtins

How can I retrieve names of all builtins for my current python distribution during runtime?
2
votes
1answer
125 views

pydev eclipse configuration for __builtins__?

suppose on init I've install my function under builtins then throughout my project I can access it directly that function, no need to import, but how can I tell this to eclipse - so it should not show ...
24
votes
8answers
7k views

How is the 'is' keyword implemented in Python?

... the is keyword that can be used for equality in strings. >>> s = 'str' >>> s is 'str' True >>> s is 'st' False I tried both __is__() and __eq__() but they didn't ...
1
vote
0answers
356 views

COM access to classic ASP intrinsic objects

I'm converting a VB6 COM object that works with classic ASP to a c# .Net COM Object Interop_COMSVCS.ObjectContext objContext; Interop_COMSVCS.AppServer objAppServer; ...
3
votes
1answer
294 views

two conflicting meanings of builtins in python 3 (python 3.1, python 3k, python3000)

I just posted below query to comp.lang.python, but i feel this kind of question has some kind of right-of-way here on Stack Overflow, too, so be it repeated. the essence: why does ‘builtins’ have two ...
1
vote
6answers
1k views

C/C++: Size of builtin types for various compilers/platforms

Where can I go to get information about the size of, say, unsigned int compiling under gcc for Mac OS X (both 32 and 64 bits)? In general I'd love to have a resource I can go to with a ...