Actually you can attach multiple event handlers to the same event, not just one. Even when namespaces are used. Check out this quick demo.
Actually, one advantage of namespaces is that you can mark a group of event handlers, and easily remove them later to avoid attaching them several times. This is what this line does:
$("#SomeId").off("click.namespace").on("click.namespace");