- 04 Eki, 2010 1 kayıt (commit)
-
-
Giampaolo Rodolà yazdı
-
- 21 Eyl, 2010 1 kayıt (commit)
-
-
Georg Brandl yazdı
-
- 15 Eyl, 2010 2 kayıt (commit)
-
-
Antoine Pitrou yazdı
-
Antoine Pitrou yazdı
-
- 12 Eyl, 2010 2 kayıt (commit)
-
-
Amaury Forgeot d'Arc yazdı
The internal unicode database is now always used. (after 5 years: see http://mail.python.org/pipermail/python-dev/2004-December/050193.html )
-
Victor Stinner yazdı
-
- 10 Eyl, 2010 1 kayıt (commit)
-
-
Amaury Forgeot d'Arc yazdı
namespace if it occurs as a free variable in a nested block. This limitation of the compiler has been lifted, and a new opcode introduced (DELETE_DEREF). This sample was valid in 2.6, but fails to compile in 3.x without this change:: >>> def f(): ... def print_error(): ... print(e) ... try: ... something ... except Exception as e: ... print_error() ... # implicit "del e" here This sample has always been invalid in Python, and now works:: >>> def outer(x): ... def inner(): ... return x ... inner() ... del x There is no need to bump the PYC magic number: the new opcode is used for code that did not compile before.
-
- 08 Eyl, 2010 1 kayıt (commit)
-
-
Giampaolo Rodolà yazdı
Fix issue 9794: adds context manager protocol to socket.socket so that socket.create_connection() can be used with the 'with' statement.
-
- 07 Eyl, 2010 3 kayıt (commit)
-
-
Éric Araujo yazdı
-
Amaury Forgeot d'Arc yazdı
-
Georg Brandl yazdı
-
- 06 Eyl, 2010 5 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
Georg Brandl yazdı
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
-
Benjamin Peterson yazdı
-
- 05 Eyl, 2010 9 kayıt (commit)
-
-
Éric Araujo yazdı
- The entry about shutil.copytree is just a revert of r84524 which looks like an unfinished edition. - The use of gender-neutral language (s/his/their/) removes the implicit assumption that programmer == male (change agreed by Antoine). - Other changes should be uncontroversial fixes. I haven’t rewrapped under 80 lines to keep the diffs readable; I’ll rewrap later.
-
Georg Brandl yazdı
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
-
- 04 Eyl, 2010 2 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
-
- 03 Eyl, 2010 2 kayıt (commit)
-
-
Amaury Forgeot d'Arc yazdı
(It seems that I am the first SWIG user to try python 3.2...)
-
Georg Brandl yazdı
-
- 19 Agu, 2010 2 kayıt (commit)
-
-
Victor Stinner yazdı
-
Victor Stinner yazdı
error handler, or strict error handler on Windows. * Rewrite os.fsencode() documentation * Improve os.fsencode and os.fsdecode() tests using the new PYTHONFSENCODING environment variable
-
- 18 Agu, 2010 4 kayıt (commit)
-
-
Victor Stinner yazdı
-
Éric Araujo yazdı
-
Andrew M. Kuchling yazdı
(Also fix a name ordering in the ACKS file.)
-
Victor Stinner yazdı
filesystem encoding. initfsencoding() displays also a better error message if get_codeset() failed.
-
- 17 Agu, 2010 2 kayıt (commit)
-
-
Giampaolo Rodolà yazdı
-
Giampaolo Rodolà yazdı
fix issue #8866: parameters passed to socket.getaddrinfo can now be specified as single keyword arguments.
-
- 15 Agu, 2010 2 kayıt (commit)
-
-
Mark Dickinson yazdı
-
Raymond Hettinger yazdı
-
- 09 Agu, 2010 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
and make it return the file descriptor.
-