Merged revisions 72135 via svnmerge from

svn+ssh://pythondev@svn.python.org/python/trunk

........
  r72135 | benjamin.peterson | 2009-04-29 19:23:11 -0500 (Wed, 29 Apr 2009) | 1 line

  prevent ref cycles by removing bound method on close()
........
This commit is contained in:
Benjamin Peterson 2009-04-30 00:30:08 +00:00
parent 6a52a9cfcb
commit cc65c1d9c8
1 changed files with 2 additions and 0 deletions

View File

@ -690,6 +690,8 @@ class Aifc_write:
self._datalength != self._datawritten or \ self._datalength != self._datawritten or \
self._marklength: self._marklength:
self._patchheader() self._patchheader()
# Prevent ref cycles
self._convert = None
self._file.flush() self._file.flush()
self._file = None self._file = None