omz:forum

    • Register
    • Login
    • Search
    • Recent
    • Popular

    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.


    Bug list for beta release 160037

    Pythonista
    160036 beta 160037 bug 2.0
    19
    86
    80267
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • userista
      userista last edited by

      (Suggestion) on the iPhone it's hard to tell when a line wraps - perhaps a line wrap glyph and/or line numbers would be a nice improvement.

      1 Reply Last reply Reply Quote 0
      • Phuket2
        Phuket2 last edited by

        Looks like the < > navigation buttons have disappeared in the help browser in this release

        1 Reply Last reply Reply Quote 0
        • omz
          omz last edited by

          @Phuket2 They're at the bottom now. This works better in "docked" mode.

          Phuket2 1 Reply Last reply Reply Quote 1
          • Phuket2
            Phuket2 @omz last edited by

            @omz , opps, sorry. So they are :) maybe you need to say people over 50 can not be beta testers :) the eye sight is so bad. The Whiskys also don't help :)

            1 Reply Last reply Reply Quote 0
            • Webmaster4o
              Webmaster4o last edited by

              This is a bug.

              If my keyboard is open when I present a view, it looks like this when I two-finger swipe to dismiss the view

              1 Reply Last reply Reply Quote 0
              • Sebastian
                Sebastian last edited by Sebastian

                Every time I try to create a new script or file, I get an error saying "The new file/project couldn't be created. Please make sure that you entered a valid file name." Am I the only one who gets this error? I'm using an iPhone 5S with iOS 8.1.

                Edit:
                Everything works fine now, I reinstalled Pythonista and now the error message is gone.

                1 Reply Last reply Reply Quote 0
                • Wizardofozzie
                  Wizardofozzie @ccc last edited by Wizardofozzie

                  @ccc said:

                  First off, a massive congratulations to you @omz for the scene rewrite and especially the new docs for that module. The intro will rapidly get any wannabe game developer hooked!! It will break a few things but your moving sk functionality into scene is brilliant and performance seems impressive.

                  Bugs

                  • Almost all third party modules are not current with PyPI.
                  • Many third party modules are present but not listed in the documentation: Crypto ctypes dateutil ecdsa flask html2text html5lib httplib2 itsdangerous jedi jinja2 mechanize midiutil mpmath oauth2 parsedatetime pycparser pyflakes pygments pyparsing PyPDF2 pytz reportlab simpy six sqlalchemy sympy thrift werkzeug wsgiref xhtml2pdf yaml

                  Out of interest, how do you find these modules?
                  For example:

                  import oauth2, os
                  odir = os.path.dirname(oauth2.__file__)
                  # odir = /var/mobile/Containers/Bundle/Application/C370CA19-1410-4DA3-975F-CBA563809E66/Pythonista.app/Frameworks/PythonistaKit.framework/pylib/site-packages/oauth2
                  # so oauth2 dir is in site-packages/oauth2
                  

                  If I use Stash to look for the ~/site-packages/oauth2 directory, it's not there. What gives?

                  Edit: In Stash:
                  cd ~/Documents/site-packages
                  ls -a1
                  cd oauth2 <- ERROR

                  (Excuse what may be a very basic question!)

                  1 Reply Last reply Reply Quote 0
                  • Wizardofozzie
                    Wizardofozzie last edited by

                    Quick bug:

                    • closing Pythonista or locking the iPad while watching a video (mp4) using Quick View does not stop the video (and audio) from playing
                    • Importing ripemd160 module raises a NoneType not Callable when Pythonista modules (eg photos, dialogs, clipboard) have already been loaded, however ere is no such issue if the module is run first (Link to come)
                    1 Reply Last reply Reply Quote 0
                    • JonB
                      JonB last edited by

                      the built in modules come preloaded in the app library, not in docs. You can view these folders from the Standard Library in the file browser, or grab the name as you already did, then navigate there in stash. There is no direct way to get there from Documents, because of the way apple sandboxing works. Actually, we probsbly should open a pull request in stash to provide an environment variable to the library folder.

                      as for ripemd160.... are you doing an from xxx import *? If so, you can often expect issues with namespace clashes. Also, if you aborted an import, that usually results in failure to import later, unless you restart pythonista. In the rare event that this is real, do
                      import pdb; pdb.pm() to figure out what is trying to be called.

                      Wizardofozzie 1 Reply Last reply Reply Quote 0
                      • Wizardofozzie
                        Wizardofozzie @JonB last edited by

                        @JonB said:

                        the built in modules come preloaded in the app library, not in docs. You can view these folders from the Standard Library in the file browser, or grab the name as you already did, then navigate there in stash. There is no direct way to get there from Documents, because of the way apple sandboxing works. Actually, we probsbly should open a pull request in stash to provide an environment variable to the library folder.

                        as for ripemd160.... are you doing an from xxx import *?

                        Yep :)

                        If so, you can often expect issues with namespace clashes. Also, if you aborted an import,

                        Can you clarify this? Would

                        try:
                            from urllib import add_opener # python3
                        except ImportError:
                            from urllib2 import add_opener # python2
                        

                        trigger the error?

                        that usually results in failure to import later, unless you restart pythonista. In the rare event that this is real, do
                        import pdb; pdb.pm() to figure out what is trying to be called.

                        @JonB said:

                        the built in modules come preloaded in the app library, not in docs. You can view these folders from the Standard Library in the file browser, or grab the name as you already did, then navigate there in stash.

                        Forgive me if this is a basic question, but how do I go about this? Ie how do I use stash to navigate to the Std Library directory?

                        as for ripemd160.... are you doing an from xxx import *? If so, you can often expect issues with namespace clashes. Also, if you aborted an import, that usually results in failure to import later, unless you restart pythonista. In the rare event that this is real, do
                        import pdb; pdb.pm() to figure out what is trying to be called.

                        JonB 1 Reply Last reply Reply Quote 0
                        • ccc
                          ccc last edited by ccc

                          grab the name [ ... ] and navigate there in stash.

                          Means type the following into stash:

                          cd /var/mobile/Containers/Bundle/Application/C370CA19-1410-4DA3-975F-CBA563809E66/Pythonista.app/Frameworks/PythonistaKit.framework/pylib/site-packages/
                          ls
                          
                          Wizardofozzie 1 Reply Last reply Reply Quote 1
                          • JonB
                            JonB @Wizardofozzie last edited by

                            @simcity4242

                            Also, if you aborted an import,
                            I mean if you press the X button to abort a script in the middle of a long import, the subsequent import will generally fail in confusing ways.

                            1 Reply Last reply Reply Quote 0
                            • techteej
                              techteej last edited by

                              When clicking empty trash, the trash empties but Pythonista also crashes.

                              iOS 9.0.2 - iPad 3

                              1 Reply Last reply Reply Quote 0
                              • JonB
                                JonB last edited by

                                I could not reproduce this on ipad 3/ ios8

                                1 Reply Last reply Reply Quote 0
                                • georg.viehoever
                                  georg.viehoever last edited by georg.viehoever

                                  @techteej I Did see no problems on my ipad2 ios9.1
                                  Georg

                                  Phuket2 1 Reply Last reply Reply Quote 1
                                  • Phuket2
                                    Phuket2 @georg.viehoever last edited by

                                    @georg.viehoever , where?if you look on the thread, you don't have an entry. So somehow, when you submitted it didn't work!

                                    1 Reply Last reply Reply Quote 0
                                    • ccc
                                      ccc last edited by

                                      @georg-viehoever was referring to @techteej 's bug report on emptying the trash.

                                      1 Reply Last reply Reply Quote 0
                                      • JonB
                                        JonB last edited by

                                        bug: View.touch_enabled cannot be changed.

                                        1 Reply Last reply Reply Quote 0
                                        • JonB
                                          JonB last edited by

                                          inconsistency: View.present popover_location does not accept a ui.Point.

                                          1 Reply Last reply Reply Quote 0
                                          • JonB
                                            JonB last edited by

                                            convert_point and convert_rect do not work properly with a None argument if the view is a sheet. not as bad as fullscreen, but there is an extra offset equal to the top left corner, as if that were being accounted for twice.

                                            1 Reply Last reply Reply Quote 0
                                            • First post
                                              Last post
                                            Powered by NodeBB Forums | Contributors