~ubuntu-branches/ubuntu/natty/python3.1/natty-security

« back to all changes in this revision

Viewing changes to Doc/library/stdtypes.rst

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2009-07-23 18:52:17 UTC
  • mfrom: (1.1.2 upstream) (2.1.1 experimental)
  • Revision ID: james.westby@ubuntu.com-20090723185217-orj9vm2mappvz4ze
Tags: 3.1-0ubuntu1
* Python 3.1 final release.
* Update to the 3.1 release branch, 20090723.
* Add explicit build dependency on tk8.5-dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2342
2342
      >>> v = memoryview(data)
2343
2343
      >>> v.readonly
2344
2344
      False
2345
 
      >>> v[0] = 'z'
 
2345
      >>> v[0] = b'z'
2346
2346
      >>> data
2347
2347
      bytearray(b'zbcefg')
2348
2348
      >>> v[1:4] = b'123'