Lines Matching full:longer
145 Some well-known APIs no longer return lists:
149 this no longer works: ``k = d.keys(); k.sort()``. Use ``k =
154 :meth:`dict.itervalues` methods are no longer supported.
174 it works with values of arbitrary size. The latter no longer
187 > None`` or ``len <= len`` are no longer valid, and e.g. ``None <
190 no longer makes sense -- all the elements must be comparable to each
195 * :meth:`builtin.sorted` and :meth:`list.sort` no longer accept the
201 special method is no longer supported. Use :meth:`__lt__` for sorting,
218 longer a limit to the value of integers. However, :data:`sys.maxsize`
228 * Octal literals are no longer of the form ``0720``; use ``0o720``
258 * You can no longer use ``u"..."`` literals for Unicode text.
301 There is no longer any need for using the encoding-aware streams
330 * :pep:`3138`: The :func:`repr` of a string no longer escapes
431 The module-global :data:`__metaclass__` variable is no longer
436 * List comprehensions no longer support the syntactic form
442 variables are no longer leaked into the surrounding scope.
452 * :pep:`3113`: Tuple parameter unpacking removed. You can no longer
460 * Removed keyword: :func:`exec` is no longer a keyword; it remains as
462 2.x.) Also note that :func:`exec` no longer takes a stream argument;
465 * Integer literals no longer support a trailing ``l`` or ``L``.
467 * String literals no longer support a leading ``u`` or ``U``.
470 allowed at the module level, no longer inside functions.
486 consulted for longer descriptions.
489 feature and no longer needs to be imported from the :mod:`__future__`.
507 * :ref:`pep-3105`. This is now a standard feature and no longer needs
512 longer supported. (Of course, the :keyword:`!as` *var* part is still
559 longer used) and :mod:`md5` (replaced by :mod:`hashlib`), were
707 * Exceptions no longer behave as sequences. Use the :attr:`args`
712 Additionally, you can no longer explicitly specify a traceback;
830 * Removed :func:`coerce`. This function no longer serves a purpose