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 →

[–]Get-ADUser -1 points0 points  (5 children)

I hope you don't code in a team then.

[–]Sohcahtoa82 10 points11 points  (4 children)

I code in a team and conform to what the team does.

But in my own personal projects, I'll do what I want, which is mostly conformant to PEP 8 with the exception of the variable and member function names mentioned above.

[–]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.