From 67bafd87ed8d49f389dc202f09c1dbf90088a532 Mon Sep 17 00:00:00 2001 From: Andrey Vlasovskikh Date: Tue, 24 Mar 2015 15:35:12 +0300 Subject: [PATCH] Use Python 3.4 as a default Python 3 instead of 3.3 3.4 is the current stable version of Python 3. --- python/psi-api/src/com/jetbrains/python/psi/LanguageLevel.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/psi-api/src/com/jetbrains/python/psi/LanguageLevel.java b/python/psi-api/src/com/jetbrains/python/psi/LanguageLevel.java index a93f5ffb8767..0e3ff4ca83a3 100644 --- a/python/psi-api/src/com/jetbrains/python/psi/LanguageLevel.java +++ b/python/psi-api/src/com/jetbrains/python/psi/LanguageLevel.java @@ -35,7 +35,7 @@ public enum LanguageLevel { PYTHON34(34, true, false, true, true); private static LanguageLevel DEFAULT2 = PYTHON27; - private static LanguageLevel DEFAULT3 = PYTHON33; + private static LanguageLevel DEFAULT3 = PYTHON34; public static LanguageLevel FORCE_LANGUAGE_LEVEL = null;