Sublime Forum

Dev Build 3121

#61

it’s possible to see this behavior on a normal resolution monitor by setting DPI scale to 2.0, restarting ST and opening the changelog

1 Like

ColorHelper 2.0.0
#62

Another user here with intermittent crashes on OS X (10.11.6 El Capitan). My OS X Console reads:

9/15/16 9:30:21.430 AM tccd[72401]: SecTaskLoadEntitlements failed error=22
9/15/16 9:30:21.501 AM Sublime Text[69796]: SecTaskLoadEntitlements failed error=22
9/15/16 9:30:21.501 AM Sublime Text[69796]: SecTaskLoadEntitlements failed error=22
9/15/16 9:30:21.501 AM Sublime Text[69796]: SecTaskLoadEntitlements failed error=22

Just installed 3122, will report back if it doesn’t clear up the intermittent crashes.

0 Likes

#63

Yes, this is on a Surface Pro 4.

0 Likes

#64

Try installing Package Control.

Before installing it, in buld 3121 and 3122, urllib contains parse. As soon as I install Package Control in build 3121 or 3122, urllib no longer contains parse.

This is on ElmentaryOS Loki, based on Ubuntu 16.04 x64, all of it doing clean installs and removing "~/config/sublime-text-3"

0 Likes

#65

I have Package Control installed (3.2.0-beta2) on build 3121 with a fresh copy of Ubuntu 14.04 and don’t have trouble with urllib.

Can you inspect the __path__ and __loader__ attributes?

Package Control: No updated packages
Package Control: Urllib HTTPS Debug General
  Closing connection to packagecontrol.io on port 443 after 1 request
>>> import urllib
>>> dir(urllib)
['__builtins__', '__cached__', '__doc__', '__file__', '__loader__', '__name__', '__package__', '__path__', 'error', 'parse', 'request', 'response']
>>> urllib.__path__
['/home/wbond/Downloads/sublime_text_3/python3.3.zip/urllib']
>>> urllib.__loader__
<zipimporter object "/home/wbond/Downloads/sublime_text_3/python3.3.zip">
0 Likes

#66

Awesome.

Installing the beta you mention works flawlessly. I was clicking on preferences>Package Control to install. I can confirm this urllib.parse issue happens then, and also that it doesn’t happen with 3.2.0-beta2.

Thanks for your support!

0 Likes

#67

On Windows I can see tearing when scrolling view slowly using mini map. Not sure if that’s new or was there for a while.

0 Likes

#68
`>>> import urllib
>>> dir(urllib)
['__builtins__', '__cached__', '__doc__', '__file__', '__loader__', '__name__', '__package__', '__path__', 'request']`

many plugins is not working

App: sublime text 3 3124
Platform: 16.04 LTS

0 Likes

#69

(This is an old build.)

That said, check urllib.__file__ and urllib.__loader__.

0 Likes

#70
>>> urllib.__file__
'/opt/sublime_text/python3.3.zip/urllib/__init__.pyo'
>>> urllib.__loader__
<zipimporter object "/opt/sublime_text/python3.3.zip">
>>> urllib.__path__
['/opt/sublime_text/python3.3.zip/urllib']
0 Likes