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?
test_type='foo'?). – larsks Jan 18 at 1:59typeis not a keyword. – Mechanical snail Jan 18 at 2:03typein 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:05kind,sort,variety,genre,ilk,category,strain,style,persuasionor some other synonym and avoid any issues. – martineau Jan 18 at 3:07