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

How do you guys feel about using a standard keyword in the function definition? For example I cannot understand why 'type' was made into a standard keyword, given that I want to use it in every second function that I create. So if I just start using 'type' as parameter, is that very un-pythonic? Will that possibly break things in the future?

I figure I can use something like

def test(type='foo')

as long as I don't actually want to obtain the type of a certain object within that function.

Yay, nay, meh?

share|improve this question
4  
At some point it will bite you or somebody else who has to work with your code. Just rename your parameters (maybe test_type='foo'?). – larsks Jan 18 at 1:59
2  
type is not a keyword. – Mechanical snail Jan 18 at 2:03
3  
It just makes your code unnecessarily confusing. When someone sees type in Python code, they expect it to mean a certain thing. When it doesn't mean that thing, even in just a small piece of code, it just makes your code harder to follow and debug later. – sr2222 Jan 18 at 2:05
1  
I suggest you use kind, sort, variety, genre, ilk, category, strain, style, persuasion or some other synonym and avoid any issues. – martineau Jan 18 at 3:07

closed as not constructive by detly, Jim Garrison, Anoop Vaidya, Jan Hančič, Thor Jan 18 at 9:20

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

Browse other questions tagged or ask your own question.