Victor Stinner
|
526daabf34
|
Issue #18408: parsetok() must not write into stderr on memory allocation error
The caller gets an error code and can raise a classic Python exception.
|
2013-07-11 23:17:33 +02:00 |
Victor Stinner
|
3bf5f530d9
|
Issue #18408: parsetok() must not write into stderr on memory allocation error
The caller gets an error code and can raise a classic Python exception.
|
2013-07-11 22:52:19 +02:00 |
Christian Heimes
|
22ed7fe906
|
Fix resource leak in parser, free node ptr
CID 1028068 (#1 of 1): Resource leak (RESOURCE_LEAK)
leaked_storage: Variable n going out of scope leaks the storage it points to.
|
2013-06-29 21:03:51 +02:00 |
Serhiy Storchaka
|
9670543a00
|
Issue #18038: SyntaxError raised during compilation sources with illegal
encoding now always contains an encoding name.
|
2013-06-09 16:53:55 +03:00 |
Serhiy Storchaka
|
3af14aaba5
|
Issue #18038: SyntaxError raised during compilation sources with illegal
encoding now always contains an encoding name.
|
2013-06-09 16:51:52 +03:00 |
Victor Stinner
|
796977360f
|
Issue #9566: Fix compiler warning on Windows 64-bit
|
2013-06-05 00:44:00 +02:00 |
Benjamin Peterson
|
8d89c2aaba
|
change AST codegen to use PyModule_AddIntMacro
|
2013-05-20 10:28:48 -07:00 |
Benjamin Peterson
|
7654ab9ef0
|
placate msvc
|
2013-03-18 23:39:53 -07:00 |
Benjamin Peterson
|
b72406b8fa
|
refactor to fix refleaks
|
2013-03-18 23:24:41 -07:00 |
Benjamin Peterson
|
cda75be02a
|
unify some ast.argument's attrs; change Attribute column offset (closes #16795)
Patch from Sven Brauch.
|
2013-03-18 10:48:58 -07:00 |
Martin v. Löwis
|
b26a9b10ea
|
Replace WaitForSingleObject with WaitForSingleObjectEx,
for better WinRT compatibility.
|
2013-01-25 14:25:48 +01:00 |
Benjamin Peterson
|
442f20996d
|
create NameConstant AST class for None, True, and False literals (closes #16619)
|
2012-12-06 17:41:04 -05:00 |
Mark Dickinson
|
073f067369
|
Issue #16546: merge fix from 3.3
|
2012-11-25 14:37:43 +00:00 |
Mark Dickinson
|
ded35aeb9d
|
Issue #16546: make ast.YieldFrom argument mandatory.
|
2012-11-25 14:36:26 +00:00 |
Benjamin Peterson
|
742b2f8d7a
|
make PyGrammar_LabelRepr return a const char * (closes #16369)
|
2012-10-31 13:36:13 -04:00 |
Benjamin Peterson
|
d0845588b8
|
make _PyParser_TokenNames const
|
2012-10-24 08:21:52 -07:00 |
Matthias Klose
|
aee3c76acf
|
- Issue #16262: fix out-of-src-tree builds, if mercurial is not installed.
|
2012-10-21 23:12:35 +02:00 |
Ezio Melotti
|
8a9cc526fe
|
#15923: merge with 3.2.
|
2012-09-30 22:47:47 +03:00 |
Ezio Melotti
|
cb2916a714
|
#15923: fix a mistake in asdl_c.py that resulted in a TypeError after 2801bf875a24 (see #15801).
|
2012-09-30 22:41:37 +03:00 |
Antoine Pitrou
|
ca8aa4acf6
|
Issue #15144: Fix possible integer overflow when handling pointers as integer values, by using Py_uintptr_t instead of size_t.
Patch by Serhiy Storchaka.
|
2012-09-20 20:56:47 +02:00 |
Georg Brandl
|
cc98887e45
|
Remove unused variables in parsetok().
|
2012-08-11 11:16:18 +02:00 |
Jesus Cea
|
88ca04e6a8
|
MERGE: Closes #15512: Correct __sizeof__ support for parser
|
2012-08-03 14:29:26 +02:00 |
Jesus Cea
|
e9c5318967
|
Closes #15512: Correct __sizeof__ support for parser
|
2012-08-03 14:28:37 +02:00 |
Benjamin Peterson
|
481ae50ccd
|
construct fields in the right order (closes #15517)
Patch from Taihyun Hwang.
|
2012-07-31 21:41:56 -07:00 |
Benjamin Peterson
|
8107176f9b
|
add gc support to the AST base type (closes #15293)
|
2012-07-08 11:03:46 -07:00 |
Antoine Pitrou
|
507507473e
|
Issue #15291: Fix a memory leak where AST nodes where not properly deallocated.
|
2012-07-08 12:43:32 +02:00 |
Jesus Cea
|
035997f1a3
|
Issue #1677: Unused variable warning in Non-Windows
|
2012-07-03 13:15:03 +02:00 |
Tim Golden
|
9175c3d804
|
Issue #1677: Handle better a race condition between the interactive interpreter and
the Ctrl-C signal handler on Windows
|
2012-06-29 18:39:26 +01:00 |
Tim Golden
|
b92b757eed
|
Issue #1677: Handle better a race condition between the interactive interpreter and
the Ctrl-C signal handler on Windows
|
2012-06-29 18:27:08 +01:00 |
Christian Heimes
|
0b3847de6d
|
Issue #15096: Drop support for the ur string prefix
|
2012-06-20 11:17:58 +02:00 |
Benjamin Peterson
|
77fa9379e2
|
use Py_ssize_t for ast sequence lengths
|
2012-05-15 10:10:27 -07:00 |
Martin v. Löwis
|
ce58ed3e7c
|
Merge with 3.2: issue #14433
|
2012-04-30 06:20:37 +02:00 |
Martin v. Löwis
|
e654c11f56
|
Issue #14433: Prevent msvcrt crash in interactive prompt when stdin is closed.
|
2012-04-30 06:10:41 +02:00 |
Benjamin Peterson
|
1767e0274b
|
free AST's dict
|
2012-03-14 21:50:29 -05:00 |
Victor Stinner
|
45e50de1f5
|
Try to fix compilation of Python-ast.c on Visual Studio 2008
|
2012-03-13 01:17:31 +01:00 |
Benjamin Peterson
|
7e0dbfbbde
|
give the AST class a __dict__
|
2012-03-12 09:46:44 -07:00 |
Armin Ronacher
|
6ecf77b3f8
|
Basic support for PEP 414 without docs or tests.
|
2012-03-04 12:04:06 +00:00 |
Benjamin Peterson
|
cff9237d57
|
check after comments, too (#13832)
|
2012-01-19 17:46:13 -05:00 |
Benjamin Peterson
|
188bee5873
|
don't leak node
|
2012-01-19 08:48:18 -05:00 |
Benjamin Peterson
|
79c1f96438
|
only check this when parsing python
|
2012-01-19 08:48:11 -05:00 |
Meador Inge
|
fa21bf015d
|
Issue #12705: Raise SyntaxError when compiling multiple statements as single interactive statement
|
2012-01-19 01:08:41 -06:00 |
Benjamin Peterson
|
8d5a62df10
|
murder tabs
|
2012-01-16 09:54:28 -05:00 |
Benjamin Peterson
|
527c622926
|
make YieldFrom its own distinct from Yield (closes #13780)
|
2012-01-14 08:58:23 -05:00 |
Nick Coghlan
|
1f7ce62bd6
|
Implement PEP 380 - 'yield from' (closes #11682)
|
2012-01-13 21:43:40 +10:00 |
Antoine Pitrou
|
3a5d4cb940
|
Issue #13748: Raw bytes literals can now be written with the `rb` prefix as well as `br`.
|
2012-01-12 22:46:19 +01:00 |
Benjamin Peterson
|
f51d36a743
|
evidently some buildbots don't have python 3 installed
|
2011-12-29 12:07:21 -06:00 |
Benjamin Peterson
|
3ab85886d6
|
run AST toolchain on python3
|
2011-12-29 12:03:55 -06:00 |
Antoine Pitrou
|
ab0e9f7089
|
Issue #10350: Read and save errno before calling a function which might overwrite it.
Original patch by Hallvard B Furuseth.
|
2011-12-16 12:29:37 +01:00 |
Antoine Pitrou
|
c345ce1a69
|
Issue #10350: Read and save errno before calling a function which might overwrite it.
Original patch by Hallvard B Furuseth.
|
2011-12-16 12:28:32 +01:00 |
Amaury Forgeot d'Arc
|
942d5ba125
|
Merge branch 3.2
|
2011-11-22 22:02:01 +01:00 |
Amaury Forgeot d'Arc
|
58e8761da6
|
Issue #13436: Fix a bogus error message when an AST object was passed
an invalid integer value.
|
2011-11-22 21:51:55 +01:00 |
Antoine Pitrou
|
f364e7b598
|
Fix memory leak with FLUFL-related syntax errors (!)
|
2011-11-13 01:02:02 +01:00 |
Antoine Pitrou
|
9ec2593bda
|
Fix memory leak with FLUFL-related syntax errors (!)
|
2011-11-13 01:01:23 +01:00 |
Meador Inge
|
70d86bdef1
|
Issue 13243: Rename _Py_identifier to _Py_IDENTIFIER in asdl_c.py
Parser/asdl_c.py was missed in commit 7109f31300fb when _Py_identifier
was replaced with _Py_IDENTIFIER. Thanks to Eric Snow for the patch.
|
2011-10-22 14:06:50 -05:00 |
Martin v. Löwis
|
1c67dd9b15
|
Port SetAttrString/HasAttrString to SetAttrId/GetAttrId.
|
2011-10-14 15:16:45 +02:00 |
Martin v. Löwis
|
bd928fef42
|
Rename _Py_identifier to _Py_IDENTIFIER.
|
2011-10-14 10:20:37 +02:00 |
Martin v. Löwis
|
1ee1b6fe0d
|
Use identifier API for PyObject_GetAttrString.
|
2011-10-10 18:11:30 +02:00 |
Martin v. Löwis
|
afe55bba33
|
Add API for static strings, primarily good for identifiers.
Thanks to Konrad Schöbel and Jasper Schulz for helping with the mass-editing.
|
2011-10-09 10:38:36 +02:00 |
Martin v. Löwis
|
d63a3b8beb
|
Implement PEP 393.
|
2011-09-28 07:41:54 +02:00 |
Éric Araujo
|
6f08f53e79
|
Merge 3.2
|
2011-09-02 17:32:30 +02:00 |
Benjamin Peterson
|
0224d4e699
|
accept bytes for the AST 'string' type
This is a temporary kludge and all is well in 3.3.
|
2011-08-31 22:13:03 -04:00 |
Benjamin Peterson
|
5a3f49bb7e
|
revert code which conditionally writes Python-ast.h (closes #12727)
|
2011-08-11 14:42:28 -05:00 |
Benjamin Peterson
|
257a1d0f28
|
2.x syntax
|
2011-08-09 18:48:02 -05:00 |
Benjamin Peterson
|
4ec450d3c7
|
make this work on 2.4
|
2011-08-09 18:38:57 -05:00 |
Benjamin Peterson
|
6f7500424c
|
make this work with py2.5
|
2011-08-09 16:49:52 -05:00 |
Benjamin Peterson
|
398256b230
|
don't rewrite the header file if it hasn't changed; this reduces development build time
|
2011-08-09 16:28:58 -05:00 |
Benjamin Peterson
|
4dc6499613
|
the bool asdl type died a while ago
|
2011-08-09 16:10:09 -05:00 |
Benjamin Peterson
|
e249841903
|
add a asdl bytes type, so Bytes.s be properly typechecked
|
2011-08-09 16:08:39 -05:00 |
Benjamin Peterson
|
8a4b42b7f4
|
merge 3.2
|
2011-07-22 11:10:43 -05:00 |
Benjamin Peterson
|
180e63507d
|
None is ok for identifiers but not strings
|
2011-07-22 11:09:07 -05:00 |
Benjamin Peterson
|
86f088e8e5
|
merge 3.2
|
2011-07-22 10:55:02 -05:00 |
Benjamin Peterson
|
2193d2b72b
|
type check AST strings and identifiers
This is related to a21829180423 as well as #12609 and #12610.
|
2011-07-22 10:50:23 -05:00 |
Benjamin Peterson
|
efad2449fc
|
hardcode the old svn __version__
|
2011-07-22 10:39:12 -05:00 |
Benjamin Peterson
|
0bd152cd67
|
remove ast.__version__ (closes #12273)
|
2011-07-15 21:10:13 -05:00 |
Benjamin Peterson
|
620b2c8c98
|
comment which is not applicable anymore
|
2011-07-15 15:27:34 -05:00 |
Benjamin Peterson
|
0c1036270d
|
remove intrcheck.c, which hasn't been used for years
|
2011-06-20 19:22:34 -05:00 |
Victor Stinner
|
0c9f31b4c0
|
(Merge 3.2) Issue #12016: my_fgets() now always clears errors before calling
fgets(). Fix the following case: sys.stdin.read() stopped with CTRL+d (end of
file), raw_input() interrupted by CTRL+c.
|
2011-05-30 23:47:01 +02:00 |
Victor Stinner
|
4f71101eed
|
Issue #12016: my_fgets() now always clears errors before calling fgets(). Fix
the following case: sys.stdin.read() stopped with CTRL+d (end of file),
raw_input() interrupted by CTRL+c.
|
2011-05-30 23:46:00 +02:00 |
Benjamin Peterson
|
758888d437
|
don't restrict unexpected EOF errors to the first line (closes #12216)
|
2011-05-30 11:12:38 -05:00 |
Benjamin Peterson
|
43af12b0b4
|
unify TryExcept and TryFinally (closes #12199)
|
2011-05-29 11:43:10 -05:00 |
Benjamin Peterson
|
bf1bbc1452
|
reflect with statements with multiple items in the AST (closes #12106)
|
2011-05-27 13:58:08 -05:00 |
Victor Stinner
|
00c5925533
|
(Merge 3.2) Issue #1195: Fix input() if it is interrupted by CTRL+d and then
CTRL+c, clear the end-of-file indicator after CTRL+d.
|
2011-05-10 00:21:26 +02:00 |
Victor Stinner
|
db932786af
|
Issue #1195: Fix input() if it is interrupted by CTRL+d and then CTRL+c, clear
the end-of-file indicator after CTRL+d.
|
2011-05-10 00:20:35 +02:00 |
Victor Stinner
|
4755ab010f
|
Issue #1195: Fix input() if it is interrupted by CTRL+d and then CTRL+c,
clear the end-of-file indicator after CTRL+d.
|
2011-05-10 00:19:53 +02:00 |
Jesus Cea
|
c1935d2abf
|
Revert bb62908896fe, but keep the test
|
2011-04-25 04:03:58 +02:00 |
Jesus Cea
|
88f7841be7
|
Correctly merging #9319 into 3.3?
|
2011-04-25 03:46:43 +02:00 |
Victor Stinner
|
c68b6aaec8
|
Issue #9319: Fix a crash on parsing a Python source code without encoding
cookie and not valid in UTF-8: use "<file>" as the filename instead of
reading from NULL.
|
2011-04-23 00:41:19 +02:00 |
Victor Stinner
|
4ae3b447c8
|
(Merge 3.2) Issue #11650: PyOS_StdioReadline() retries fgets() if it was
interrupted (EINTR), for example if the program is stopped with CTRL+z on Mac
OS X. Patch written by Charles-Francois Natali.
|
2011-04-09 16:01:55 +02:00 |
Victor Stinner
|
a870e35a7d
|
(Merge 3.1) Issue #11650: PyOS_StdioReadline() retries fgets() if it was
interrupted (EINTR), for example if the program is stopped with CTRL+z on Mac
OS X. Patch written by Charles-Francois Natali.
|
2011-04-09 15:59:25 +02:00 |
Victor Stinner
|
52c950f229
|
Issue #11650: PyOS_StdioReadline() retries fgets() if it was interrupted
(EINTR), for example if the program is stopped with CTRL+z on Mac OS X. Patch
written by Charles-Francois Natali.
|
2011-04-09 15:55:44 +02:00 |
Victor Stinner
|
fe7c5b5bdf
|
Issue #9319: Include the filename in "Non-UTF8 code ..." syntax error.
|
2011-04-05 01:48:03 +02:00 |
Victor Stinner
|
7f2fee3640
|
Issue #10785: Store the filename as Unicode in the Python parser.
|
2011-04-05 00:39:01 +02:00 |
Ezio Melotti
|
4969f709cc
|
#11515: Merge with 3.1.
|
2011-03-15 05:59:46 +02:00 |
Ezio Melotti
|
42da663e6f
|
#11515: fix several typos. Patch by Piotr Kasprzyk.
|
2011-03-15 05:18:48 +02:00 |
Ezio Melotti
|
373089239b
|
#11515: Merge with 3.2.
|
2011-03-15 06:03:08 +02:00 |
Benjamin Peterson
|
c9723d09eb
|
use only the hex version, since the revno is unreliable across repos
|
2011-03-13 16:36:08 -05:00 |
Benjamin Peterson
|
0d6245dd89
|
actually get file rev
|
2011-03-12 18:35:02 -06:00 |
Benjamin Peterson
|
6cb2b923e0
|
convert ast versioning to mercurial
|
2011-03-12 18:28:16 -06:00 |
Brett Cannon
|
b94767ff44
|
Issue #8914: fix various warnings from the Clang static analyzer v254.
|
2011-02-22 20:15:44 +00:00 |
Victor Stinner
|
034c7537d8
|
Issue #10841: don't translate newlines for pgen
|
2011-01-07 18:56:19 +00:00 |