- 19 Eyl, 2015 1 kayıt (commit)
-
-
Eric V. Smith yazdı
Issue #24965: Implement PEP 498 "Literal String Interpolation". Documentation is still needed, I'll open an issue for that.
-
- 12 Eyl, 2015 1 kayıt (commit)
-
-
Eric V. Smith yazdı
-
- 23 Tem, 2015 1 kayıt (commit)
-
-
Yury Selivanov yazdı
This commit simplifies async/await tokenization in tokenizer.c, tokenize.py & lib2to3/tokenize.py. Previous solution was to keep a stack of async-def & def blocks, whereas the new approach is just to remember position of the outermost async-def block. This change won't bring any parsing performance improvements, but it makes the code much easier to read and validate.
-
- 22 Tem, 2015 1 kayıt (commit)
-
-
Yury Selivanov yazdı
This commit fixes how one-line async-defs and defs are tracked by tokenizer. It allows to correctly parse invalid code such as: >>> async def f(): ... def g(): pass ... async = 10 and valid code such as: >>> async def f(): ... async def g(): pass ... await z As a consequence, is is now possible to have one-line 'async def foo(): await ..' functions: >>> async def foo(): return await bar()
-
- 18 May, 2015 1 kayıt (commit)
-
-
Yury Selivanov yazdı
-
- 12 May, 2015 1 kayıt (commit)
-
-
Yury Selivanov yazdı
-
- 21 Nis, 2015 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
- 07 Haz, 2014 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
- 10 Nis, 2014 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
- 28 Şub, 2014 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
are opened in text mode. Patch by Serhiy Storchaka.
-
- 09 Ock, 2014 2 kayıt (commit)
-
-
Serhiy Storchaka yazdı
value. (fixes error in patch for issue #18960)
-
Serhiy Storchaka yazdı
* The first line of Python script could be executed twice when the source encoding (not equal to 'utf-8') was specified on the second line. * Now the source encoding declaration on the second line isn't effective if the first line contains anything except a comment. * As a consequence, 'python -x' works now again with files with the source encoding declarations specified on the second file, and can be used again to make Python batch files on Windows. * The tokenize module now ignore the source encoding declaration on the second line if the first line contains anything except a comment. * IDLE now ignores the source encoding declaration on the second line if the first line contains anything except a comment. * 2to3 and the findnocoding.py script now ignore the source encoding declaration on the second line if the first line contains anything except a comment.
-
- 19 Eki, 2013 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
- 27 Agu, 2013 1 kayıt (commit)
-
-
Victor Stinner yazdı
are now created non-inheritable; add functions os.get/set_inheritable(), os.get/set_handle_inheritable() and socket.socket.get/set_inheritable().
-
- 13 Agu, 2013 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
-
- 16 Tem, 2013 2 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
- 09 Haz, 2013 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
encoding now always contains an encoding name.
-
- 04 Haz, 2013 1 kayıt (commit)
-
-
Victor Stinner yazdı
-
- 24 Eki, 2012 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
- 20 Haz, 2012 1 kayıt (commit)
-
-
Christian Heimes yazdı
-
- 04 Mar, 2012 1 kayıt (commit)
-
-
Armin Ronacher yazdı
-
- 12 Ock, 2012 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
-
- 14 Eki, 2011 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 10 Eki, 2011 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 09 Eki, 2011 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
Thanks to Konrad Schöbel and Jasper Schulz for helping with the mass-editing.
-
- 28 Eyl, 2011 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 25 Nis, 2011 1 kayıt (commit)
-
-
Jesus Cea yazdı
-
- 22 Nis, 2011 1 kayıt (commit)
-
-
Victor Stinner yazdı
cookie and not valid in UTF-8: use "<file>" as the filename instead of reading from NULL.
-
- 04 Nis, 2011 2 kayıt (commit)
-
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
- 07 Ock, 2011 2 kayıt (commit)
-
-
Victor Stinner yazdı
-
Victor Stinner yazdı
On Windows, set the binary mode on stdin, stdout, stderr and all io.FileIO objects (to not translate newlines, \r\n <=> \n). The Python parser translates newlines (\r\n => \n).
-
- 05 Ock, 2011 1 kayıt (commit)
-
-
Victor Stinner yazdı
PyUnicode_FromFormat() and PyErr_Format() allocates a buffer of the needed size, it is no more a fixed-buffer of 500 bytes.
-
- 27 Ara, 2010 1 kayıt (commit)
-
-
Victor Stinner yazdı
encoding instead of UTF-8.
-
- 14 Eki, 2010 1 kayıt (commit)
-
-
Victor Stinner yazdı
descriptor.
-
- 24 Haz, 2010 1 kayıt (commit)
-
-
Stefan Krah yazdı
used with signed/unsigned char arguments. For integer arguments, EOF has to be handled separately.
-
- 09 May, 2010 3 kayıt (commit)
-
-
Antoine Pitrou yazdı
svn+ssh://pythondev@svn.python.org/python/branches/py3k ................ r81032 | antoine.pitrou | 2010-05-09 17:52:27 +0200 (dim., 09 mai 2010) | 9 lines Recorded merge of revisions 81029 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r81029 | antoine.pitrou | 2010-05-09 16:46:46 +0200 (dim., 09 mai 2010) | 3 lines Untabify C files. Will watch buildbots. ........ ................
-
Antoine Pitrou yazdı
svn+ssh://pythondev@svn.python.org/python/trunk ........ r81029 | antoine.pitrou | 2010-05-09 16:46:46 +0200 (dim., 09 mai 2010) | 3 lines Untabify C files. Will watch buildbots. ........
-
Antoine Pitrou yazdı
svn+ssh://pythondev@svn.python.org/python/trunk ........ r81029 | antoine.pitrou | 2010-05-09 16:46:46 +0200 (dim., 09 mai 2010) | 3 lines Untabify C files. Will watch buildbots. ........
-