]> granicus.if.org Git - python/commitdiff
Merged revisions 69987,70002,70061 via svnmerge from
authorGeorg Brandl <georg@python.org>
Tue, 27 Oct 2009 13:44:06 +0000 (13:44 +0000)
committerGeorg Brandl <georg@python.org>
Tue, 27 Oct 2009 13:44:06 +0000 (13:44 +0000)
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r69987 | benjamin.peterson | 2009-02-26 01:30:11 +0100 (Do, 26 Feb 2009) | 1 line

  fix str.format()'s first arg #5371
........
  r70002 | andrew.kuchling | 2009-02-26 23:34:30 +0100 (Do, 26 Feb 2009) | 1 line

  The curses panel library is now supported
........
  r70061 | hirokazu.yamamoto | 2009-02-28 16:24:00 +0100 (Sa, 28 Feb 2009) | 1 line

  Binary flag is needed on windows.
........

Doc/howto/curses.rst
Doc/library/mmap.rst
Doc/library/stdtypes.rst

index 2d964c393ca8098475d35de90e800723871627e4..71e640cb34040d198418191e12b9f04436eeddd0 100644 (file)
@@ -426,7 +426,7 @@ quirks, and provide complete lists of all the functions, attributes, and
 Because the curses API is so large, some functions aren't supported in the
 Python interface, not because they're difficult to implement, but because no one
 has needed them yet.  Feel free to add them and then submit a patch.  Also, we
-don't yet have support for the menus or panels libraries associated with
+don't yet have support for the menu library associated with
 ncurses; feel free to add that.
 
 If you write an interesting little program, feel free to contribute it as
index 09ec73b094520320e5a4fe253d6dcab721fec457..a6e9bdc855c1c5a8cb177f28a6755df8b1630c64 100644 (file)
@@ -99,10 +99,10 @@ memory but does not update the underlying file.
       import mmap
 
       # write a simple example file
-      with open("hello.txt", "w") as f:
+      with open("hello.txt", "wb") as f:
           f.write("Hello Python!\n")
 
-      with open("hello.txt", "r+") as f:
+      with open("hello.txt", "r+b") as f:
           # memory-map the file, size 0 means whole file
           map = mmap.mmap(f.fileno(), 0)
           # read content via standard file methods
index 3417970dcb71a9acadb304f475cc0185d4f17a78..deebda7afc5a2e694007dcdc62b89cb8cbbbca19 100644 (file)
@@ -861,7 +861,7 @@ string functions based on regular expressions.
    found.
 
 
-.. method:: str.format(format_string, *args, **kwargs)
+.. method:: str.format(*args, **kwargs)
 
    Perform a string formatting operation.  The *format_string* argument can
    contain literal text or replacement fields delimited by braces ``{}``.  Each