5

Original seen in Programmer Humor on Reddit.

Comments
  • 5
    It’s not even a joke.

    This shit can happen when the application redirects the print output to something else.
  • 3
    @Lensflare or in a docker container if you didn't enable the PYTHONUNBUFFERED=1 env var. Other solution is to do print("xoxo", flush=True).
    Also, forgetting a new line if your language doesn't add one automatically (printf c).
    Also, if you're editing on the production server by accident.
    Also, if you forgot to commit / push when debugging something remote and it requires deploy.
    Also, when you get pyc'd.
  • 3
    I remember adding fflush() everywhere when using C
  • 3
    @cafecortado did you also hear a toilet sound in your head like I did? :)
  • 2
  • 2
    Learn how to use a debugger you peasants!
  • 0
    @Lensflare how does this randomly happen again ?
  • 0
    This guy remains creepy
  • 1
    @Lensflare or when print statements are only enabled for debug builds, but you're running in release mode.
Add Comment