Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

2
  • I used pass a lot as a placeholder when writing code, particularly in classes, when I want something runnable before everything is complete. It is really python's equivalent of {}, which python can't do as it doesn't use braces. In that sense, all languages that I am aware of allow this, it is just that only a couple like python require a keyword. Even back in the assembly days we had NOP.
    – user53141
    Commented Jan 13, 2015 at 23:55
  • @StevenBurnap, usually when I do something like that, I include the local equivalent of printf(">>> routine XXX called\n"); Commented Jan 14, 2015 at 4:19