[pypy-commit] pypy py3.5: typo

cfbolz pypy.commits at gmail.com
Tue May 30 07:47:38 EDT 2017


Author: Carl Friedrich Bolz <cfbolz at gmx.de>
Branch: py3.5
Changeset: r91447:052ba96573f4
Date: 2017-05-30 13:47 +0200
http://bitbucket.org/pypy/pypy/changeset/052ba96573f4/

Log:	typo

diff --git a/pypy/module/posix/interp_posix.py b/pypy/module/posix/interp_posix.py
--- a/pypy/module/posix/interp_posix.py
+++ b/pypy/module/posix/interp_posix.py
@@ -2435,7 +2435,7 @@
 
 @unwrap_spec(policy=int)
 def sched_get_priority_min(space, policy):
-    """rreturns the minimum priority value that
+    """returns the minimum priority value that
      can be used with the scheduling algorithm 
      identified by policy
     """
@@ -2445,4 +2445,4 @@
         except OSError as e:
             wrap_oserror(space, e, eintr_retry=True)
         else:
-           return space.newint(s)
\ No newline at end of file
+           return space.newint(s)


More information about the pypy-commit mailing list