Fix some typos.
authorArfrever Frehtes Taifersar Arahesis <Arfrever@Apache.Org>
Thu, 31 Jan 2013 03:58:23 +0000 (04:58 +0100)
committerArfrever Frehtes Taifersar Arahesis <Arfrever@Apache.Org>
Thu, 31 Jan 2013 03:58:23 +0000 (04:58 +0100)
pym/_emerge/SpawnProcess.py
pym/_emerge/resolver/slot_collision.py
pym/portage/process.py
pym/portage/util/__init__.py

index ebba7d3d4051586951006f1d7b39c7c0d98d1258..9155050aba5b2737f64783692b6eadfba3bdb99a 100644 (file)
@@ -76,7 +76,7 @@ class SpawnProcess(SubProcess):
 
                else:
                        # Create a dummy pipe that PipeLogger uses to efficiently
-                       # monitors for process exit by listening for the EOF event.
+                       # monitor for process exit by listening for the EOF event.
                        # Re-use of the allocated fd number for the key in fd_pipes
                        # guarantees that the keys will not collide for similarly
                        # allocated pipes which are used by callers such as
index f8e1e4ecd2c859d28a0b033c7a577f7e192fcd5b..a99d59645ba7c7f3b89a4867183de0df6a0da568 100644 (file)
@@ -320,7 +320,7 @@ class slot_conflict_handler(object):
                                                                        if violated_atom.use is None:
                                                                                # Something like bug #453400 caused the
                                                                                # above findAtomForPackage call to
-                                                                               # to return None unexpectedly.
+                                                                               # return None unexpectedly.
                                                                                msg = ("\n\n!!! BUG: Detected "
                                                                                        "USE dep match inconsistency:\n"
                                                                                        "\tppkg: %s\n"
index d677b9fa8c2fee8ff576dd15dc4f381a9394a138..89ebd0553fa9832475771d464e507f5cd9a3187a 100644 (file)
@@ -422,7 +422,7 @@ def _setup_pipes(fd_pipes, close_fds=True):
        Even when close_fds is False, file descriptors referenced as
        values in fd_pipes are automatically closed if they do not also
        occur as keys in fd_pipes. It is assumed that the caller will
-       explicitely add them to the fd_pipes keys if they are intended
+       explicitly add them to the fd_pipes keys if they are intended
        to remain open. This allows for convenient elimination of
        unnecessary duplicate file descriptors.
 
index c148a739df99c0f189872cf18d623cb6cb931248..da5277bff7245d28fa1660872104ee84b892d36d 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright 2004-2012 Gentoo Foundation
+# Copyright 2004-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 __all__ = ['apply_permissions', 'apply_recursive_permissions',
@@ -1236,7 +1236,7 @@ class atomic_ofstream(ObjectProxy):
                        self.close()
 
        def __del__(self):
-               """If the user does not explicitely call close(), it is
+               """If the user does not explicitly call close(), it is
                assumed that an error has occurred, so we abort()."""
                try:
                        f = object.__getattribute__(self, '_file')