omz:forum

    • Register
    • Login
    • Search
    • Recent
    • Popular
    1. Home
    2. doniervask

    Welcome!

    This is the community forum for my apps Pythonista and Editorial.

    For individual support questions, you can also send an email. If you have a very short question or just want to say hello — I'm @olemoritz on Twitter.


    D
    • Profile
    • Following 0
    • Followers 0
    • Topics 0
    • Posts 1
    • Best 0
    • Controversial 0
    • Groups 0

    doniervask

    @doniervask

    0
    Reputation
    1
    Profile views
    1
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    doniervask Unfollow Follow

    Latest posts made by doniervask

    • RE: Pythonista 3 300005 bug

      Unexpected EOF( End Of File ) while parsing is a syntax error which means the end of source code is reached even before all the blocks of code are completed. This happens in a number of situations in Python, such as:

      • Missing or unmatched parentheses.
      • Forget to enclose code inside a special statement.
      • Unfinished try statement.

      To solve this error, first check to make sure that every if statement, for loop, while loop, try statement and function contains code. Second, check to make sure you close all the parenthesis in your code. Moreover, you can avoid this problem by keeping code neat and readable, making it easier to find and fix the problem whenever the error does occur.

      posted in Pythonista
      D
      doniervask