add acct() method to send new account name
diff --git a/Lib/ftplib.py b/Lib/ftplib.py
index 0dc0d6e..e6e1a3a 100644
--- a/Lib/ftplib.py
+++ b/Lib/ftplib.py
@@ -328,6 +328,11 @@
 		conn.close()
 		self.voidresp()
 
+	# Send new account name
+	def acct(self, password):
+		cmd = 'ACCT ' + password
+		self.voidcmd(cmd)
+
 	# Return a list of files in a given directory (default the current)
 	def nlst(self, *args):
 		cmd = 'NLST'