mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
Merged revisions 60990-61002 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r60990 | eric.smith | 2008-02-23 17:05:26 +0100 (Sat, 23 Feb 2008) | 1 line Removed duplicate Py_CHARMASK define. It's already defined in Python.h. ........ r60991 | andrew.kuchling | 2008-02-23 17:23:05 +0100 (Sat, 23 Feb 2008) | 4 lines #1330538: Improve comparison of xmlrpclib.DateTime and datetime instances. Remove automatic handling of datetime.date and datetime.time. This breaks backward compatibility, but python-dev discussion was strongly against this automatic conversion; see the bug for a link. ........ r60994 | andrew.kuchling | 2008-02-23 17:39:43 +0100 (Sat, 23 Feb 2008) | 1 line #835521: Add index entries for various pickle-protocol methods and attributes ........ r60995 | andrew.kuchling | 2008-02-23 18:10:46 +0100 (Sat, 23 Feb 2008) | 2 lines #1433694: minidom's .normalize() failed to set .nextSibling for last element. Fix by Malte Helmert ........ r61000 | christian.heimes | 2008-02-23 18:40:11 +0100 (Sat, 23 Feb 2008) | 1 line Patch #2167 from calvin: Remove unused imports ........ r61001 | christian.heimes | 2008-02-23 18:42:31 +0100 (Sat, 23 Feb 2008) | 1 line Patch #1957: syslogmodule: Release GIL when calling syslog(3) ........ r61002 | christian.heimes | 2008-02-23 18:52:07 +0100 (Sat, 23 Feb 2008) | 2 lines Issue #2051 and patch from Alexander Belopolsky: Permission for pyc and pyo files are inherited from the py file. ........
This commit is contained in:
parent
5abe9125f9
commit
05e8be17fd
161 changed files with 160 additions and 288 deletions
|
@ -7,8 +7,6 @@ from Carbon import Qd
|
|||
from Carbon import Win
|
||||
from Carbon import Controls
|
||||
from Carbon import List
|
||||
import sys
|
||||
import struct
|
||||
from Carbon import Icn
|
||||
import macresource
|
||||
|
||||
|
|
|
@ -7,7 +7,6 @@ from Carbon import Qd
|
|||
from Carbon import Win
|
||||
from Carbon import Controls
|
||||
from Carbon import List
|
||||
import sys
|
||||
import struct
|
||||
import macresource
|
||||
|
||||
|
|
|
@ -7,7 +7,6 @@ from Carbon import Qd
|
|||
from Carbon import Win
|
||||
from Carbon import Controls
|
||||
from Carbon import List
|
||||
import sys
|
||||
import struct
|
||||
import macresource
|
||||
|
||||
|
|
|
@ -7,8 +7,6 @@ from Carbon import Qd
|
|||
from Carbon import Win
|
||||
from Carbon import Controls
|
||||
from Carbon import List
|
||||
import sys
|
||||
import struct
|
||||
from Carbon import Icn
|
||||
import macresource
|
||||
|
||||
|
|
|
@ -6,7 +6,6 @@ from Carbon import Res
|
|||
from Carbon import Qd
|
||||
from Carbon import Win
|
||||
from Carbon import List
|
||||
import sys
|
||||
import struct
|
||||
import macresource
|
||||
|
||||
|
|
|
@ -4,7 +4,6 @@ Res and Dlg in the process"""
|
|||
import EasyDialogs
|
||||
from Carbon import Res
|
||||
from Carbon import Dlg
|
||||
import sys
|
||||
import socket
|
||||
import string
|
||||
import macresource
|
||||
|
|
|
@ -2,7 +2,6 @@ import FrameWork
|
|||
import EasyDialogs
|
||||
from Carbon import Res
|
||||
from Carbon import Dlg
|
||||
import sys
|
||||
import socket
|
||||
import string
|
||||
import macresource
|
||||
|
|
|
@ -7,11 +7,9 @@ from Carbon import Qd
|
|||
from Carbon import QuickDraw
|
||||
from Carbon import Win
|
||||
#ifrom Carbon mport List
|
||||
import sys
|
||||
import struct
|
||||
import img
|
||||
import imgformat
|
||||
import struct
|
||||
import mac_image
|
||||
|
||||
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
"""mac_image - Helper routines (hacks) for images"""
|
||||
import imgformat
|
||||
from Carbon import Qd
|
||||
import time
|
||||
import struct
|
||||
import MacOS
|
||||
|
||||
|
|
|
@ -3,8 +3,6 @@
|
|||
# (Should learn how to tell the compiler to compile it as well.)
|
||||
|
||||
import sys
|
||||
import os
|
||||
import string
|
||||
import MacOS
|
||||
|
||||
from bgenlocations import TOOLBOXDIR, BGENDIR
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
# Scan an Apple header file, generating a Python file of generator calls.
|
||||
|
||||
import sys
|
||||
import os
|
||||
from bgenlocations import TOOLBOXDIR, BGENDIR
|
||||
sys.path.append(BGENDIR)
|
||||
from scantools import Scanner_OSX
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
# Scan an Apple header file, generating a Python file of generator calls.
|
||||
|
||||
import sys
|
||||
import os
|
||||
from bgenlocations import TOOLBOXDIR, BGENDIR
|
||||
sys.path.append(BGENDIR)
|
||||
from scantools import Scanner
|
||||
|
|
|
@ -1,8 +1,6 @@
|
|||
# IBCarbonscan.py
|
||||
|
||||
import sys
|
||||
import os
|
||||
import string
|
||||
import MacOS
|
||||
import sys
|
||||
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
# Scan an Apple header file, generating a Python file of generator calls.
|
||||
|
||||
import sys
|
||||
import os
|
||||
from bgenlocations import TOOLBOXDIR, BGENDIR
|
||||
sys.path.append(BGENDIR)
|
||||
from scantools import Scanner_OSX
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
# Scan an Apple header file, generating a Python file of generator calls.
|
||||
|
||||
import sys
|
||||
import os
|
||||
from bgenlocations import TOOLBOXDIR, BGENDIR
|
||||
sys.path.append(BGENDIR)
|
||||
from scantools import Scanner_OSX
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
# Scan an Apple header file, generating a Python file of generator calls.
|
||||
|
||||
import sys
|
||||
import os
|
||||
from bgenlocations import TOOLBOXDIR, BGENDIR
|
||||
sys.path.append(BGENDIR)
|
||||
from scantools import Scanner
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
# Scan <Controls.h>, generating ctlgen.py.
|
||||
import sys
|
||||
import os
|
||||
from bgenlocations import TOOLBOXDIR, BGENDIR
|
||||
sys.path.append(BGENDIR)
|
||||
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
# Scan an Apple header file, generating a Python file of generator calls.
|
||||
|
||||
import sys
|
||||
import os
|
||||
from bgenlocations import TOOLBOXDIR, BGENDIR
|
||||
sys.path.append(BGENDIR)
|
||||
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
# Scan <Drag.h>, generating draggen.py.
|
||||
import sys
|
||||
import os
|
||||
from bgenlocations import TOOLBOXDIR, BGENDIR, INCLUDEDIR
|
||||
sys.path.append(BGENDIR)
|
||||
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
# Scan an Apple header file, generating a Python file of generator calls.
|
||||
|
||||
import sys
|
||||
import os
|
||||
from bgenlocations import TOOLBOXDIR, BGENDIR
|
||||
sys.path.append(BGENDIR)
|
||||
from scantools import Scanner
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
# Scan an Apple header file, generating a Python file of generator calls.
|
||||
|
||||
import sys
|
||||
import os
|
||||
from bgenlocations import TOOLBOXDIR, BGENDIR
|
||||
sys.path.append(BGENDIR)
|
||||
from scantools import Scanner_OSX
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
# Scan an Apple header file, generating a Python file of generator calls.
|
||||
|
||||
import sys
|
||||
import os
|
||||
from bgenlocations import TOOLBOXDIR, BGENDIR
|
||||
sys.path.append(BGENDIR)
|
||||
from scantools import Scanner
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
# Scan an Apple header file, generating a Python file of generator calls.
|
||||
|
||||
import sys
|
||||
import os
|
||||
from bgenlocations import TOOLBOXDIR, BGENDIR
|
||||
sys.path.append(BGENDIR)
|
||||
from scantools import Scanner_OSX
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
# Scan an Apple header file, generating a Python file of generator calls.
|
||||
|
||||
import sys
|
||||
import os
|
||||
from bgenlocations import TOOLBOXDIR, BGENDIR
|
||||
sys.path.append(BGENDIR)
|
||||
from scantools import Scanner
|
||||
|
|
|
@ -1,8 +1,6 @@
|
|||
# IBCarbonscan.py
|
||||
|
||||
import sys
|
||||
import os
|
||||
import string
|
||||
|
||||
from bgenlocations import TOOLBOXDIR, BGENDIR
|
||||
sys.path.append(BGENDIR)
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
# Scan an Apple header file, generating a Python file of generator calls.
|
||||
|
||||
import sys
|
||||
import os
|
||||
from bgenlocations import TOOLBOXDIR, BGENDIR
|
||||
sys.path.append(BGENDIR)
|
||||
from scantools import Scanner
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
# Scan an Apple header file, generating a Python file of generator calls.
|
||||
|
||||
import sys
|
||||
import os
|
||||
from bgenlocations import TOOLBOXDIR, BGENDIR
|
||||
sys.path.append(BGENDIR)
|
||||
from scantools import Scanner
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
# Scan an Apple header file, generating a Python file of generator calls.
|
||||
|
||||
import sys
|
||||
import os
|
||||
from bgenlocations import TOOLBOXDIR, BGENDIR
|
||||
sys.path.append(BGENDIR)
|
||||
from scantools import Scanner
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
# Scan <Menus.h>, generating menugen.py.
|
||||
import sys
|
||||
import os
|
||||
from bgenlocations import TOOLBOXDIR, BGENDIR
|
||||
sys.path.append(BGENDIR)
|
||||
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
# Scan an Apple header file, generating a Python file of generator calls.
|
||||
|
||||
import sys
|
||||
import os
|
||||
from bgenlocations import TOOLBOXDIR, BGENDIR
|
||||
sys.path.append(BGENDIR)
|
||||
from scantools import Scanner_OSX
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
# Scan an Apple header file, generating a Python file of generator calls.
|
||||
|
||||
import sys
|
||||
import os
|
||||
from bgenlocations import TOOLBOXDIR, BGENDIR
|
||||
sys.path.append(BGENDIR)
|
||||
from scantools import Scanner
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
# Scan an Apple header file, generating a Python file of generator calls.
|
||||
|
||||
import sys
|
||||
import os
|
||||
from bgenlocations import TOOLBOXDIR, BGENDIR
|
||||
sys.path.append(BGENDIR)
|
||||
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
# Scan an Apple header file, generating a Python file of generator calls.
|
||||
import sys
|
||||
import os
|
||||
from bgenlocations import TOOLBOXDIR, BGENDIR
|
||||
sys.path.append(BGENDIR)
|
||||
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
# Scan an Apple header file, generating a Python file of generator calls.
|
||||
|
||||
import sys
|
||||
import os
|
||||
from bgenlocations import TOOLBOXDIR, BGENDIR
|
||||
sys.path.append(BGENDIR)
|
||||
from scantools import Scanner
|
||||
|
|
|
@ -3,8 +3,6 @@
|
|||
# (Should learn how to tell the compiler to compile it as well.)
|
||||
|
||||
import sys
|
||||
import os
|
||||
import string
|
||||
import MacOS
|
||||
|
||||
from bgenlocations import TOOLBOXDIR, BGENDIR
|
||||
|
|
|
@ -4,7 +4,6 @@
|
|||
# generates a boilerplate to be edited by hand.
|
||||
|
||||
import sys
|
||||
import os
|
||||
from bgenlocations import TOOLBOXDIR, BGENDIR
|
||||
sys.path.append(BGENDIR)
|
||||
from scantools import Scanner
|
||||
|
|
|
@ -3,7 +3,6 @@
|
|||
# (Should learn how to tell the compiler to compile it as well.)
|
||||
|
||||
import sys
|
||||
import os
|
||||
from bgenlocations import TOOLBOXDIR, BGENDIR
|
||||
sys.path.append(BGENDIR)
|
||||
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
# Scan an Apple header file, generating a Python file of generator calls.
|
||||
|
||||
import sys
|
||||
import os
|
||||
from bgenlocations import TOOLBOXDIR, BGENDIR
|
||||
sys.path.append(BGENDIR)
|
||||
from scantools import Scanner
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
# Scan an Apple header file, generating a Python file of generator calls.
|
||||
import sys
|
||||
import os
|
||||
from bgenlocations import TOOLBOXDIR, BGENDIR
|
||||
sys.path.append(BGENDIR)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue