diff -r a9feb69ec424 Doc/library/asyncio-protocol.rst --- a/Doc/library/asyncio-protocol.rst Fri Dec 13 04:14:41 2013 +0100 +++ b/Doc/library/asyncio-protocol.rst Fri Dec 13 17:21:48 2013 +0800 @@ -649,7 +649,7 @@ server.close() loop.close() -:meth:`Transport.close` can be called immediatly after +:meth:`Transport.close` can be called immediately after :meth:`WriteTransport.write` even if data are not sent yet on the socket: both methods are asynchronous. ``yield from`` is not needed because these transport methods don't return coroutines. diff -r a9feb69ec424 Lib/test/test_signal.py --- a/Lib/test/test_signal.py Fri Dec 13 04:14:41 2013 +0100 +++ b/Lib/test/test_signal.py Fri Dec 13 17:21:48 2013 +0800 @@ -873,7 +873,7 @@ # Unblock SIGUSR1 try: - # unblock the pending signal calls immediatly the signal handler + # unblock the pending signal calls immediately the signal handler signal.pthread_sigmask(signal.SIG_UNBLOCK, [signum]) except ZeroDivisionError: pass diff -r a9feb69ec424 Modules/faulthandler.c --- a/Modules/faulthandler.c Fri Dec 13 04:14:41 2013 +0100 +++ b/Modules/faulthandler.c Fri Dec 13 17:21:48 2013 +0800 @@ -303,7 +303,7 @@ return; } #endif - /* call the previous signal handler: it is called immediatly if we use + /* call the previous signal handler: it is called immediately if we use sigaction() thanks to SA_NODEFER flag, otherwise it is deferred */ raise(signum); } diff -r a9feb69ec424 Modules/posixmodule.c --- a/Modules/posixmodule.c Fri Dec 13 04:14:41 2013 +0100 +++ b/Modules/posixmodule.c Fri Dec 13 17:21:48 2013 +0800 @@ -1666,7 +1666,7 @@ /* FILE_FLAG_BACKUP_SEMANTICS is required to open a directory */ /* FILE_FLAG_OPEN_REPARSE_POINT does not follow the symlink. Because of this, calls like GetFinalPathNameByHandle will return - the symlink path agin and not the actual final path. */ + the symlink path again and not the actual final path. */ FILE_ATTRIBUTE_NORMAL|FILE_FLAG_BACKUP_SEMANTICS| FILE_FLAG_OPEN_REPARSE_POINT, NULL); @@ -1762,7 +1762,7 @@ /* FILE_FLAG_BACKUP_SEMANTICS is required to open a directory */ /* FILE_FLAG_OPEN_REPARSE_POINT does not follow the symlink. Because of this, calls like GetFinalPathNameByHandle will return - the symlink path agin and not the actual final path. */ + the symlink path again and not the actual final path. */ FILE_ATTRIBUTE_NORMAL|FILE_FLAG_BACKUP_SEMANTICS| FILE_FLAG_OPEN_REPARSE_POINT, NULL);