summaryrefslogtreecommitdiff
path: root/Misc
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-07-28 03:04:04 +0000
committerMartin Panter <vadmium+py@gmail.com>2016-07-28 03:04:04 +0000
commite2eacc02bcc9f8977f5f3cea6243f236c508b772 (patch)
tree2789ca7368ea04bd2a705ac76afefa2defc0efb6 /Misc
parent801110b30319a8ab1f8f29eedbac3798b03afb55 (diff)
downloadcpython-git-e2eacc02bcc9f8977f5f3cea6243f236c508b772.tar.gz
Issue #23943: Fix typos. Patch by Piotr Kasprzyk.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/HISTORY6
-rw-r--r--Misc/NEWS2
-rw-r--r--Misc/cheatsheet4
3 files changed, 6 insertions, 6 deletions
diff --git a/Misc/HISTORY b/Misc/HISTORY
index ae5c643a58..73efb3e7a0 100644
--- a/Misc/HISTORY
+++ b/Misc/HISTORY
@@ -10633,7 +10633,7 @@ Thu Feb 18 20:51:50 1999 Fred Drake <fdrake@eric.cnri.reston.va.us>
Bow to font-lock at the end of the docstring, since it throws stuff
off.
- Make sure the path paramter to readmodule() is a list before adding it
+ Make sure the path parameter to readmodule() is a list before adding it
with sys.path, or the addition could fail.
@@ -12685,7 +12685,7 @@ an underscore and used to initialize the pointer.
- The warning about a thread still having a frame now only happens in
verbose mode.
-- Change the signal finialization so that it also resets the signal
+- Change the signal finalization so that it also resets the signal
handlers. After this has been called, our signal handlers are no
longer active!
@@ -14537,7 +14537,7 @@ some more documentation.
fixed.
- The test of negative number to the float power has been moved from the
-built-in pow() functin to floatobject.c (so complex numbers can yield the
+built-in pow() function to floatobject.c (so complex numbers can yield the
correct result).
- The bug introduced in beta2 where shared libraries loaded (using
diff --git a/Misc/NEWS b/Misc/NEWS
index 0676ff841a..5494aaca14 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -1338,7 +1338,7 @@ Library
(including empty directories) in ZIP file.
- Issue #22449: In the ssl.SSLContext.load_default_certs, consult the
- enviromental variables SSL_CERT_DIR and SSL_CERT_FILE on Windows.
+ environmental variables SSL_CERT_DIR and SSL_CERT_FILE on Windows.
- Issue #8473: doctest.testfile now uses universal newline mode to read
the test file.
diff --git a/Misc/cheatsheet b/Misc/cheatsheet
index 0867079b5b..d4eeda6bea 100644
--- a/Misc/cheatsheet
+++ b/Misc/cheatsheet
@@ -975,7 +975,7 @@ hex(x) Converts a number x to a hexadecimal string.
id(object) Returns a unique 'identity' integer for an object.
input([prompt]) Prints prompt if given. Reads input and evaluates it.
Converts a number or a string to a plain integer. Optional
-int(x[, base]) base paramenter specifies base from which to convert string
+int(x[, base]) base parameter specifies base from which to convert string
values.
intern(aString) Enters aString in the table of "interned strings"
andreturns the string. Interned strings are 'immortals'.
@@ -991,7 +991,7 @@ list(sequence) Converts sequence into a list. If already a list,returns a
copy of it.
locals() Returns a dictionary containing current local variables.
Converts a number or a string to a long integer. Optional
-long(x[, base]) base paramenter specifies base from which to convert string
+long(x[, base]) base parameter specifies base from which to convert string
values.
Applies function to every item of list and returns a listof
map(function, list, the results. If additional arguments are passed,function