This question originally asked (wrongly) what does "|" mean in Python, when the actual question was about Django. That question had a wonderful answer by Triptych I want to preserve.
feedback
|
|
In Python, the If the two operands are integers, then it will perform a bitwise or, which is a mathematical operation. If the two operands are
Additionally, authors may define operator behavior for custom types, so if So, it's impossible to give you a precise answer without knowing the data types for the two operands, but usually it will be a bitwise or. | ||||
|
feedback
|
|
It could also be "tricked" into a pipe like in unix shells, see here http://code.google.com/p/python-pipeline/ | ||||
|
feedback
|