Use Python 3.4 as a default Python 3 instead of 3.3

3.4 is the current stable version of Python 3.
This commit is contained in:
Andrey Vlasovskikh
2015-03-24 15:35:12 +03:00
parent 73c491363d
commit 67bafd87ed
@@ -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;