Wednesday, September 23, 2020

PyCharm 2020.3 EAP – Starts now!

The Early Access Program for our next major release, PyCharm 2020.3, is now open! If you are always looking forward to the next ‘big thing’ we encourage you to join the program and share your thoughts on the latest PyCharm improvements!

pycharm EAP program

If you are not familiar to our EAP programs, here are some ground rules:

  • EAP builds are free to use and expire 30 days after the build date
  • You can install an EAP build side-by-side with your stable PyCharm version
  • These builds are not fully tested and can be unstable
  • Your feedback is always welcome, use our issue tracker and make sure to mention your build version

Highlighted feature

Configurable syntax highlighting for inner functions (PY-33235)

  1. In the Settings/Preferences dialog, go to Editor | Color Scheme | Python.
  2. Select any code element you want to customize and clear the corresponding Inherit values from the checkbox to change inherited color settings for this element; then specify your color and font settings.

    For example, you can set a color highlighting for nested functions. From the list of the code elements, select Nested function definitions, clear the Inherit values from the checkbox, and specify the element foreground and background colors. Click OK to save the changes.

Define custom font and color settings for Python

More features and fixes present on this EAP build

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: the Python IDE for Professional Developers – PyCharm Blog | JetBrains
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...