Tagged Questions
The builtins tag has no wiki summary.
12
votes
7answers
3k 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 ...
5
votes
4answers
144 views
Is there a python builtin that does this:
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
165 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 ...
4
votes
4answers
348 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 ...
3
votes
1answer
194 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 ...
2
votes
6answers
115 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
59 views
itertools.ifilter Vs. filter
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 ...
1
vote
1answer
71 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)
...
1
vote
1answer
128 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 ...
1
vote
1answer
185 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 ...
1
vote
1answer
80 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 ...
1
vote
0answers
228 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;
...
1
vote
6answers
797 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 ...
0
votes
1answer
11 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 ...
0
votes
1answer
12 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 ...
0
votes
3answers
59 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 ...
0
votes
1answer
72 views
python: retrieve names of all builtins
How can I retrieve names of all builtins for my current python distribution during runtime?