Thursday, March 26, 2020

PyCharm 2020.1 Beta 2

PyCharm is approaching its release, and this beta is yet another waypoint we’re passing. The new Beta version of PyCharm can now be downloaded from our website.

Improved in PyCharm

  • We’ve improved our code completion a little: in some cases, we’d suggest a symbol from the typing package, rather than the collections package. In most cases, you’d like to actually use the collection, and not just add a type annotation, so we’ve ordered them in the way they’re used.
  • Do you think Literal["rw", "wb", "ab"] looks clearer than Union[Literal["rb"], Literal["wb"], Literal["ab]]?  If so, there’s good news: PyCharm now agrees!
  • A bug was causing the manage.py prompt for Django to show up in the wrong place, and we’ve now resolved it. Django support is available only in PyCharm Professional Edition. If you don’t have PyCharm Professional yet, this is a great moment to get it. Until Monday, you can get a 1-year PyCharm license for 30% off, and we’ll donate the full amount to the Django Software Foundation.
  • There is all this and more. You can find the details in the release notes.

Interested?

Download this EAP from our website. Alternatively, you can use the JetBrains Toolbox App to stay up to date throughout the entire EAP.
If you’re on Ubuntu 16.04 or later, you can use snap to get PyCharm EAP and stay up to date. You can find the installation instructions on our website.



from PyCharm Blog
read more

No comments:

Post a Comment

TestDriven.io: Working with Static and Media Files in Django

This article looks at how to work with static and media files in a Django project, locally and in production. from Planet Python via read...