--- 9.10.1b1 released ---
+3885. [port] Use 'open()' rather than 'file()' to open files in
+ python.
+
3884. [protocol] Add CDS and CDNSKEY record types. [RT #36333]
3881. [bug] Address memory leak with UPDATE error handling.
self.alg = int(alg)
self.keyid = int(keyid)
- kfp = file(key_file, "r")
+ kfp = open(key_file, "r")
for line in kfp:
if line[0] == ';':
continue
self.sep = False
kfp.close()
- pfp = file(private_file, "rU")
+ pfp = open(private_file, "rU")
propDict = dict()
for propLine in pfp:
propDef = propLine.strip()