Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Can I use the word "type" in my own code or is it reserved? My function header:

def get(
    self,
    region='Delhi',
    city='Delhi',
    category='Apartments',
    type='For sale',
limit = 60,
    PAGESIZE=5,
    year=2012,
    month=1,
    day=1,
    next_page=None,
threetapspage=0,
    ):

Thank you

share|improve this question

2 Answers

up vote 10 down vote accepted

Using type as a keyword argument to a function will mask the built-in function "type" within the scope of the function. So while doing so does not raise a SyntaxError, it is not considered good practice, and I would avoid doing so.

share|improve this answer
3  
However, inside the function scope I don't see a big issue with it. Same for id which is even more common. – ThiefMaster May 12 '12 at 23:13
1  
I avoid using naming variables id for just this reason. Isn't this a bad idea, since other developers could try to use the builtin and experience strange behavior? If you could provide a link to a framework/library that does this I'd be willing to reconsider. – modocache May 12 '12 at 23:16
2  
IMHO it really depends on the context and the function. – ThiefMaster May 12 '12 at 23:19
Thanks for answering! – Nick Rosencrantz May 13 '12 at 5:38

Neither. It's not a reserved word (a list of which can be found at http://docs.python.org/reference/lexical_analysis.html#keywords ), but it's generally a bad idea to shadow any builtin.

share|improve this answer
2  
Incidentally, import keyword; print keyword.kwlist will accomplish the same thing. – Joel Cornett May 13 '12 at 0:26
Thank you for the answer. – Nick Rosencrantz May 13 '12 at 5:37

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.