~ubuntu-branches/ubuntu/precise/python3.2/precise-proposed

« back to all changes in this revision

Viewing changes to Doc/reference/expressions.rst

  • Committer: Package Import Robot
  • Author(s): Matthias Klose
  • Date: 2012-03-09 18:40:39 UTC
  • mfrom: (30.1.2 sid)
  • Revision ID: package-import@ubuntu.com-20120309184039-j3yk2emxr1plyo21
Tags: 3.2.3~rc1-1
* Python 3.2.3 release candidate 1.
* Update to 20120309 from the 3.2 branch.
* Fix libpython.a symlink. Closes: #660146.
* Build-depend on xauth.
* Run the gdb tests for the debug build only.

Show diffs side-by-side

added added

removed removed

Lines of Context:
116
116
   triple: immutable; data; type
117
117
   pair: immutable; object
118
118
 
119
 
With the exception of bytes literals, these all correspond to immutable data
120
 
types, and hence the object's identity is less important than its value.
121
 
Multiple evaluations of literals with the same value (either the same occurrence
122
 
in the program text or a different occurrence) may obtain the same object or a
123
 
different object with the same value.
 
119
All literals correspond to immutable data types, and hence the object's identity
 
120
is less important than its value.  Multiple evaluations of literals with the
 
121
same value (either the same occurrence in the program text or a different
 
122
occurrence) may obtain the same object or a different object with the same
 
123
value.
124
124
 
125
125
 
126
126
.. _parenthesized: