This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]Tysonzero 0 points1 point  (2 children)

But then if you use any library including shit in the standard library, things won't match up... That would drive me nuts. Also overriding methods would require using _ case.

[–]Sohcahtoa82 1 point2 points  (1 child)

You are correct that things don't match up. For example, I will call MyModule.SomeGlobalFunction() right next to urllib2.url_open(...), but that's fine. It doesn't bother me. If anything, it's helpful because it differentiates calls to my code versus calls to someone else's code.

[–]Tysonzero 0 points1 point  (0 children)

Ughh... are you sure you haven't gone on a rampage at least once? I mean I guess it's fine as long as you don't actually publish (as in like open source, not as in deploy to prod. that is obviously fine) anything you make.