Author: kurt.kaiser
Date: Thu Jul 12 20:44:12 2007
New Revision: 56323

Modified:
   python/branches/p3yk/Lib/idlelib/PyShell.py
   python/branches/p3yk/Lib/idlelib/idlever.py
Log:
1. Remove new division option
2. Update IDLE version to 3.0x


Modified: python/branches/p3yk/Lib/idlelib/PyShell.py
==============================================================================
--- python/branches/p3yk/Lib/idlelib/PyShell.py (original)
+++ python/branches/p3yk/Lib/idlelib/PyShell.py Thu Jul 12 20:44:12 2007
@@ -351,8 +351,6 @@
 
     def build_subprocess_arglist(self):
         w = ['-W' + s for s in sys.warnoptions]
-        if 1/2 > 0: # account for new division
-            w.append('-Qnew')
         # Maybe IDLE is installed and is being accessed via sys.path,
         # or maybe it's not installed and the idle.py script is being
         # run from the IDLE source directory.

Modified: python/branches/p3yk/Lib/idlelib/idlever.py
==============================================================================
--- python/branches/p3yk/Lib/idlelib/idlever.py (original)
+++ python/branches/p3yk/Lib/idlelib/idlever.py Thu Jul 12 20:44:12 2007
@@ -1 +1 @@
-IDLE_VERSION = "2.6a0"
+IDLE_VERSION = "3.0x"
_______________________________________________
Python-3000-checkins mailing list
Python-3000-checkins@python.org
http://mail.python.org/mailman/listinfo/python-3000-checkins

Reply via email to