Kaydet (Commit) 75f1107b authored tarafından Georg Brandl's avatar Georg Brandl

Avoid sure signs of a diseased mind.

üst 89b1296a
...@@ -1050,8 +1050,8 @@ This module contains some utility functions for operating on individual files. ...@@ -1050,8 +1050,8 @@ This module contains some utility functions for operating on individual files.
.. warning:: .. warning::
Handles cross-device moves on Unix using :func:`copy_file`. What about other Handles cross-device moves on Unix using :func:`copy_file`. What about
systems??? other systems?
.. function:: write_file(filename, contents) .. function:: write_file(filename, contents)
......
...@@ -252,9 +252,10 @@ This module offers the following functions: ...@@ -252,9 +252,10 @@ This module offers the following functions:
associated. If this parameter is ``None`` or empty, the function retrieves the associated. If this parameter is ``None`` or empty, the function retrieves the
value set by the :func:`SetValue` method for the key identified by *key*. value set by the :func:`SetValue` method for the key identified by *key*.
Values in the registry have name, type, and data components. This method Values in the registry have name, type, and data components. This method
retrieves the data for a key's first value that has a NULL name. But the retrieves the data for a key's first value that has a NULL name. But the
underlying API call doesn't return the type, Lame Lame Lame, DO NOT USE THIS!!! underlying API call doesn't return the type, so always use
:func:`QueryValueEx` if possible.
.. function:: QueryValueEx(key, value_name) .. function:: QueryValueEx(key, value_name)
......
...@@ -148,7 +148,7 @@ object):: ...@@ -148,7 +148,7 @@ object)::
# as d was opened WITHOUT writeback=True, beware: # as d was opened WITHOUT writeback=True, beware:
d['xx'] = range(4) # this works as expected, but... d['xx'] = range(4) # this works as expected, but...
d['xx'].append(5) # *this doesn't!* -- d['xx'] is STILL range(4)!!! d['xx'].append(5) # *this doesn't!* -- d['xx'] is STILL range(4)!
# having opened d without writeback=True, you need to code carefully: # having opened d without writeback=True, you need to code carefully:
temp = d['xx'] # extracts the copy temp = d['xx'] # extracts the copy
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment