- 18 Mar, 2009 5 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
Antoine Pitrou yazdı
-
Mark Dickinson yazdı
sizeof(Py_UNICODE) == 2, PyUnicode_FromWideChar now converts each character outside the BMP to the appropriate surrogate pair. Thanks Victor Stinner for the patch. (backport of r70452 from py3k to trunk)
-
Hirokazu Yamamoto yazdı
If you use http://svn.python.org/projects/external/openssl-0.9.8g, Perl is not needed. This scheme was ported from PCBuild.
-
Mark Dickinson yazdı
added for 'n' formats with non-repeating thousands-separator.
-
- 17 Mar, 2009 4 kayıt (commit)
-
-
Bob Ippolito yazdı
-
Mark Dickinson yazdı
to Decimal __format__ method.
-
Benjamin Peterson yazdı
-
Mark Dickinson yazdı
alignment.
-
- 16 Mar, 2009 1 kayıt (commit)
-
-
Georg Brandl yazdı
-
- 15 Mar, 2009 13 kayıt (commit)
-
-
Hirokazu Yamamoto yazdı
-
Georg Brandl yazdı
This is cleaner and avoids lockups in obscure cases where a Queue is instantiated while the import lock is already held by another thread. OKed by Tim Peters.
-
Georg Brandl yazdı
the recommendation to send suggestions to the author can be followed.
-
Georg Brandl yazdı
-
Georg Brandl yazdı
-
Georg Brandl yazdı
-
Georg Brandl yazdı
-
Georg Brandl yazdı
-
Georg Brandl yazdı
Fix a small nit in the error message if bool() falls back on __len__ and it returns the wrong type: it would tell the user that __nonzero__ should return bool or int.
-
Georg Brandl yazdı
-
Georg Brandl yazdı
-
Benjamin Peterson yazdı
-
Nick Coghlan yazdı
-
- 14 Mar, 2009 3 kayıt (commit)
-
-
Eric Smith yazdı
Unicode format tests weren't actually testing unicode. This was probably due to the original backport from py3k.
-
Eric Smith yazdı
For simple uses for str.format(), this makes the typing easier. Hopfully this will help in the adoption of str.format(). For example: 'The {} is {}'.format('sky', 'blue') You can mix and matcth auto-numbering and named replacement fields: 'The {} is {color}'.format('sky', color='blue') But you can't mix and match auto-numbering and specified numbering: 'The {0} is {}'.format('sky', 'blue') ValueError: cannot switch from manual field specification to automatic field numbering Will port to 3.1.
-
Antoine Pitrou yazdı
-
- 13 Mar, 2009 1 kayıt (commit)
-
-
Georg Brandl yazdı
-
- 12 Mar, 2009 2 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
-
- 11 Mar, 2009 2 kayıt (commit)
-
-
Tarek Ziadé yazdı
-
Brett Cannon yazdı
Was a DeprecationWarning for not supporting it since Python 2.6. Closes issue #3652.
-
- 10 Mar, 2009 8 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
Update the decimal FAQ for the from_float() classmethod and improve the recipe for remove_exponent() to make it cut and pasteable.
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
-
- 09 Mar, 2009 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
-