2005-12-11 17:18:22 -04:00
|
|
|
/* File automatically generated by Parser/asdl_c.py */
|
2005-10-20 16:59:25 -03:00
|
|
|
|
|
|
|
#include "asdl.h"
|
|
|
|
|
|
|
|
typedef struct _mod *mod_ty;
|
|
|
|
|
|
|
|
typedef struct _stmt *stmt_ty;
|
|
|
|
|
|
|
|
typedef struct _expr *expr_ty;
|
|
|
|
|
|
|
|
typedef enum _expr_context { Load=1, Store=2, Del=3, AugLoad=4, AugStore=5,
|
|
|
|
Param=6 } expr_context_ty;
|
|
|
|
|
|
|
|
typedef struct _slice *slice_ty;
|
|
|
|
|
|
|
|
typedef enum _boolop { And=1, Or=2 } boolop_ty;
|
|
|
|
|
|
|
|
typedef enum _operator { Add=1, Sub=2, Mult=3, Div=4, Mod=5, Pow=6, LShift=7,
|
|
|
|
RShift=8, BitOr=9, BitXor=10, BitAnd=11, FloorDiv=12 }
|
|
|
|
operator_ty;
|
|
|
|
|
|
|
|
typedef enum _unaryop { Invert=1, Not=2, UAdd=3, USub=4 } unaryop_ty;
|
|
|
|
|
|
|
|
typedef enum _cmpop { Eq=1, NotEq=2, Lt=3, LtE=4, Gt=5, GtE=6, Is=7, IsNot=8,
|
|
|
|
In=9, NotIn=10 } cmpop_ty;
|
|
|
|
|
|
|
|
typedef struct _comprehension *comprehension_ty;
|
|
|
|
|
|
|
|
typedef struct _excepthandler *excepthandler_ty;
|
|
|
|
|
|
|
|
typedef struct _arguments *arguments_ty;
|
|
|
|
|
2006-12-28 02:47:50 -04:00
|
|
|
typedef struct _arg *arg_ty;
|
|
|
|
|
2005-10-20 16:59:25 -03:00
|
|
|
typedef struct _keyword *keyword_ty;
|
|
|
|
|
|
|
|
typedef struct _alias *alias_ty;
|
|
|
|
|
2005-11-13 15:14:20 -04:00
|
|
|
|
2006-04-21 07:40:58 -03:00
|
|
|
enum _mod_kind {Module_kind=1, Interactive_kind=2, Expression_kind=3,
|
|
|
|
Suite_kind=4};
|
2005-10-20 16:59:25 -03:00
|
|
|
struct _mod {
|
2006-04-21 07:40:58 -03:00
|
|
|
enum _mod_kind kind;
|
2005-10-20 16:59:25 -03:00
|
|
|
union {
|
|
|
|
struct {
|
|
|
|
asdl_seq *body;
|
|
|
|
} Module;
|
|
|
|
|
|
|
|
struct {
|
|
|
|
asdl_seq *body;
|
|
|
|
} Interactive;
|
|
|
|
|
|
|
|
struct {
|
|
|
|
expr_ty body;
|
|
|
|
} Expression;
|
|
|
|
|
|
|
|
struct {
|
|
|
|
asdl_seq *body;
|
|
|
|
} Suite;
|
|
|
|
|
|
|
|
} v;
|
|
|
|
};
|
|
|
|
|
2006-04-21 07:40:58 -03:00
|
|
|
enum _stmt_kind {FunctionDef_kind=1, ClassDef_kind=2, Return_kind=3,
|
* Remove PRINT_ITEM(_TO), PRINT_NEWLINE(_TO) opcodes.
* Fix some docstrings and one Print -> print.
* Fix test_{class,code,descrtut,dis,extcall,parser,popen,pkg,subprocess,syntax,traceback}.
These were the ones that generated code with a print statement.
In most remaining failing tests there's an issue with the soft space.
2007-02-09 17:28:07 -04:00
|
|
|
Delete_kind=4, Assign_kind=5, AugAssign_kind=6, For_kind=7,
|
|
|
|
While_kind=8, If_kind=9, With_kind=10, Raise_kind=11,
|
|
|
|
TryExcept_kind=12, TryFinally_kind=13, Assert_kind=14,
|
|
|
|
Import_kind=15, ImportFrom_kind=16, Global_kind=17,
|
|
|
|
Expr_kind=18, Pass_kind=19, Break_kind=20, Continue_kind=21};
|
2005-10-20 16:59:25 -03:00
|
|
|
struct _stmt {
|
2006-04-21 07:40:58 -03:00
|
|
|
enum _stmt_kind kind;
|
2005-10-20 16:59:25 -03:00
|
|
|
union {
|
|
|
|
struct {
|
|
|
|
identifier name;
|
|
|
|
arguments_ty args;
|
|
|
|
asdl_seq *body;
|
|
|
|
asdl_seq *decorators;
|
2006-12-28 02:47:50 -04:00
|
|
|
expr_ty returns;
|
2005-10-20 16:59:25 -03:00
|
|
|
} FunctionDef;
|
|
|
|
|
|
|
|
struct {
|
|
|
|
identifier name;
|
|
|
|
asdl_seq *bases;
|
|
|
|
asdl_seq *body;
|
|
|
|
} ClassDef;
|
|
|
|
|
|
|
|
struct {
|
|
|
|
expr_ty value;
|
|
|
|
} Return;
|
|
|
|
|
|
|
|
struct {
|
|
|
|
asdl_seq *targets;
|
|
|
|
} Delete;
|
|
|
|
|
|
|
|
struct {
|
|
|
|
asdl_seq *targets;
|
|
|
|
expr_ty value;
|
|
|
|
} Assign;
|
|
|
|
|
|
|
|
struct {
|
|
|
|
expr_ty target;
|
|
|
|
operator_ty op;
|
|
|
|
expr_ty value;
|
|
|
|
} AugAssign;
|
|
|
|
|
|
|
|
struct {
|
|
|
|
expr_ty target;
|
|
|
|
expr_ty iter;
|
|
|
|
asdl_seq *body;
|
|
|
|
asdl_seq *orelse;
|
|
|
|
} For;
|
|
|
|
|
|
|
|
struct {
|
|
|
|
expr_ty test;
|
|
|
|
asdl_seq *body;
|
|
|
|
asdl_seq *orelse;
|
|
|
|
} While;
|
|
|
|
|
|
|
|
struct {
|
|
|
|
expr_ty test;
|
|
|
|
asdl_seq *body;
|
|
|
|
asdl_seq *orelse;
|
|
|
|
} If;
|
|
|
|
|
2006-02-27 18:32:47 -04:00
|
|
|
struct {
|
|
|
|
expr_ty context_expr;
|
|
|
|
expr_ty optional_vars;
|
|
|
|
asdl_seq *body;
|
|
|
|
} With;
|
|
|
|
|
2005-10-20 16:59:25 -03:00
|
|
|
struct {
|
|
|
|
expr_ty type;
|
|
|
|
expr_ty inst;
|
|
|
|
expr_ty tback;
|
|
|
|
} Raise;
|
|
|
|
|
|
|
|
struct {
|
|
|
|
asdl_seq *body;
|
|
|
|
asdl_seq *handlers;
|
|
|
|
asdl_seq *orelse;
|
|
|
|
} TryExcept;
|
|
|
|
|
|
|
|
struct {
|
|
|
|
asdl_seq *body;
|
|
|
|
asdl_seq *finalbody;
|
|
|
|
} TryFinally;
|
|
|
|
|
|
|
|
struct {
|
|
|
|
expr_ty test;
|
|
|
|
expr_ty msg;
|
|
|
|
} Assert;
|
|
|
|
|
|
|
|
struct {
|
|
|
|
asdl_seq *names;
|
|
|
|
} Import;
|
|
|
|
|
|
|
|
struct {
|
|
|
|
identifier module;
|
|
|
|
asdl_seq *names;
|
2006-02-28 12:09:29 -04:00
|
|
|
int level;
|
2005-10-20 16:59:25 -03:00
|
|
|
} ImportFrom;
|
|
|
|
|
|
|
|
struct {
|
|
|
|
asdl_seq *names;
|
|
|
|
} Global;
|
|
|
|
|
|
|
|
struct {
|
|
|
|
expr_ty value;
|
|
|
|
} Expr;
|
|
|
|
|
|
|
|
} v;
|
|
|
|
int lineno;
|
2006-03-01 18:49:05 -04:00
|
|
|
int col_offset;
|
2005-10-20 16:59:25 -03:00
|
|
|
};
|
|
|
|
|
2006-04-21 07:40:58 -03:00
|
|
|
enum _expr_kind {BoolOp_kind=1, BinOp_kind=2, UnaryOp_kind=3, Lambda_kind=4,
|
2006-08-28 12:27:34 -03:00
|
|
|
IfExp_kind=5, Dict_kind=6, Set_kind=7, ListComp_kind=8,
|
|
|
|
GeneratorExp_kind=9, Yield_kind=10, Compare_kind=11,
|
2006-09-06 04:06:08 -03:00
|
|
|
Call_kind=12, Num_kind=13, Str_kind=14, Ellipsis_kind=15,
|
|
|
|
Attribute_kind=16, Subscript_kind=17, Name_kind=18,
|
|
|
|
List_kind=19, Tuple_kind=20};
|
2005-10-20 16:59:25 -03:00
|
|
|
struct _expr {
|
2006-04-21 07:40:58 -03:00
|
|
|
enum _expr_kind kind;
|
2005-10-20 16:59:25 -03:00
|
|
|
union {
|
|
|
|
struct {
|
|
|
|
boolop_ty op;
|
|
|
|
asdl_seq *values;
|
|
|
|
} BoolOp;
|
|
|
|
|
|
|
|
struct {
|
|
|
|
expr_ty left;
|
|
|
|
operator_ty op;
|
|
|
|
expr_ty right;
|
|
|
|
} BinOp;
|
|
|
|
|
|
|
|
struct {
|
|
|
|
unaryop_ty op;
|
|
|
|
expr_ty operand;
|
|
|
|
} UnaryOp;
|
|
|
|
|
|
|
|
struct {
|
|
|
|
arguments_ty args;
|
|
|
|
expr_ty body;
|
|
|
|
} Lambda;
|
|
|
|
|
2006-02-26 20:24:13 -04:00
|
|
|
struct {
|
|
|
|
expr_ty test;
|
|
|
|
expr_ty body;
|
|
|
|
expr_ty orelse;
|
|
|
|
} IfExp;
|
|
|
|
|
2005-10-20 16:59:25 -03:00
|
|
|
struct {
|
|
|
|
asdl_seq *keys;
|
|
|
|
asdl_seq *values;
|
|
|
|
} Dict;
|
|
|
|
|
2006-08-28 12:27:34 -03:00
|
|
|
struct {
|
|
|
|
asdl_seq *elts;
|
|
|
|
} Set;
|
|
|
|
|
2005-10-20 16:59:25 -03:00
|
|
|
struct {
|
|
|
|
expr_ty elt;
|
|
|
|
asdl_seq *generators;
|
|
|
|
} ListComp;
|
|
|
|
|
|
|
|
struct {
|
|
|
|
expr_ty elt;
|
|
|
|
asdl_seq *generators;
|
|
|
|
} GeneratorExp;
|
|
|
|
|
|
|
|
struct {
|
|
|
|
expr_ty value;
|
|
|
|
} Yield;
|
|
|
|
|
|
|
|
struct {
|
|
|
|
expr_ty left;
|
2006-04-21 07:40:58 -03:00
|
|
|
asdl_int_seq *ops;
|
2005-10-20 16:59:25 -03:00
|
|
|
asdl_seq *comparators;
|
|
|
|
} Compare;
|
|
|
|
|
|
|
|
struct {
|
|
|
|
expr_ty func;
|
|
|
|
asdl_seq *args;
|
|
|
|
asdl_seq *keywords;
|
|
|
|
expr_ty starargs;
|
|
|
|
expr_ty kwargs;
|
|
|
|
} Call;
|
|
|
|
|
|
|
|
struct {
|
|
|
|
object n;
|
|
|
|
} Num;
|
|
|
|
|
|
|
|
struct {
|
|
|
|
string s;
|
|
|
|
} Str;
|
|
|
|
|
|
|
|
struct {
|
|
|
|
expr_ty value;
|
|
|
|
identifier attr;
|
|
|
|
expr_context_ty ctx;
|
|
|
|
} Attribute;
|
|
|
|
|
|
|
|
struct {
|
|
|
|
expr_ty value;
|
|
|
|
slice_ty slice;
|
|
|
|
expr_context_ty ctx;
|
|
|
|
} Subscript;
|
|
|
|
|
|
|
|
struct {
|
|
|
|
identifier id;
|
|
|
|
expr_context_ty ctx;
|
|
|
|
} Name;
|
|
|
|
|
|
|
|
struct {
|
|
|
|
asdl_seq *elts;
|
|
|
|
expr_context_ty ctx;
|
|
|
|
} List;
|
|
|
|
|
|
|
|
struct {
|
|
|
|
asdl_seq *elts;
|
|
|
|
expr_context_ty ctx;
|
|
|
|
} Tuple;
|
|
|
|
|
|
|
|
} v;
|
|
|
|
int lineno;
|
2006-03-01 18:49:05 -04:00
|
|
|
int col_offset;
|
2005-10-20 16:59:25 -03:00
|
|
|
};
|
|
|
|
|
2006-09-06 04:06:08 -03:00
|
|
|
enum _slice_kind {Slice_kind=1, ExtSlice_kind=2, Index_kind=3};
|
2005-10-20 16:59:25 -03:00
|
|
|
struct _slice {
|
2006-04-21 07:40:58 -03:00
|
|
|
enum _slice_kind kind;
|
2005-10-20 16:59:25 -03:00
|
|
|
union {
|
|
|
|
struct {
|
|
|
|
expr_ty lower;
|
|
|
|
expr_ty upper;
|
|
|
|
expr_ty step;
|
|
|
|
} Slice;
|
|
|
|
|
|
|
|
struct {
|
|
|
|
asdl_seq *dims;
|
|
|
|
} ExtSlice;
|
|
|
|
|
|
|
|
struct {
|
|
|
|
expr_ty value;
|
|
|
|
} Index;
|
|
|
|
|
|
|
|
} v;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct _comprehension {
|
|
|
|
expr_ty target;
|
|
|
|
expr_ty iter;
|
|
|
|
asdl_seq *ifs;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct _excepthandler {
|
|
|
|
expr_ty type;
|
2007-01-10 14:51:35 -04:00
|
|
|
identifier name;
|
2005-10-20 16:59:25 -03:00
|
|
|
asdl_seq *body;
|
2006-04-21 07:40:58 -03:00
|
|
|
int lineno;
|
|
|
|
int col_offset;
|
2005-10-20 16:59:25 -03:00
|
|
|
};
|
|
|
|
|
|
|
|
struct _arguments {
|
|
|
|
asdl_seq *args;
|
|
|
|
identifier vararg;
|
2006-12-28 02:47:50 -04:00
|
|
|
expr_ty varargannotation;
|
2006-10-27 20:31:49 -03:00
|
|
|
asdl_seq *kwonlyargs;
|
2005-10-20 16:59:25 -03:00
|
|
|
identifier kwarg;
|
2006-12-28 02:47:50 -04:00
|
|
|
expr_ty kwargannotation;
|
2005-10-20 16:59:25 -03:00
|
|
|
asdl_seq *defaults;
|
2006-10-27 20:31:49 -03:00
|
|
|
asdl_seq *kw_defaults;
|
2005-10-20 16:59:25 -03:00
|
|
|
};
|
|
|
|
|
2006-12-28 02:47:50 -04:00
|
|
|
enum _arg_kind {SimpleArg_kind=1, NestedArgs_kind=2};
|
|
|
|
struct _arg {
|
|
|
|
enum _arg_kind kind;
|
|
|
|
union {
|
|
|
|
struct {
|
|
|
|
identifier arg;
|
|
|
|
expr_ty annotation;
|
|
|
|
} SimpleArg;
|
|
|
|
|
|
|
|
struct {
|
|
|
|
asdl_seq *args;
|
|
|
|
} NestedArgs;
|
|
|
|
|
|
|
|
} v;
|
|
|
|
};
|
|
|
|
|
2005-10-20 16:59:25 -03:00
|
|
|
struct _keyword {
|
|
|
|
identifier arg;
|
|
|
|
expr_ty value;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct _alias {
|
|
|
|
identifier name;
|
|
|
|
identifier asname;
|
|
|
|
};
|
|
|
|
|
2005-11-13 15:14:20 -04:00
|
|
|
|
Merged revisions 53451-53537 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r53454 | brett.cannon | 2007-01-15 20:12:08 +0100 (Mon, 15 Jan 2007) | 3 lines
Add a note for strptime that just because strftime supports some extra
directive that is not documented that strptime will as well.
........
r53458 | vinay.sajip | 2007-01-16 10:50:07 +0100 (Tue, 16 Jan 2007) | 1 line
Updated rotating file handlers to use _open().
........
r53459 | marc-andre.lemburg | 2007-01-16 14:03:06 +0100 (Tue, 16 Jan 2007) | 2 lines
Add news items for the recent pybench and platform changes.
........
r53460 | sjoerd.mullender | 2007-01-16 17:42:38 +0100 (Tue, 16 Jan 2007) | 4 lines
Fixed ntpath.expandvars to not replace references to non-existing
variables with nothing. Also added tests.
This fixes bug #494589.
........
r53464 | neal.norwitz | 2007-01-17 07:23:51 +0100 (Wed, 17 Jan 2007) | 1 line
Give Calvin Spealman access for python-dev summaries.
........
r53465 | neal.norwitz | 2007-01-17 09:37:26 +0100 (Wed, 17 Jan 2007) | 1 line
Remove Calvin since he only has access to the website currently.
........
r53466 | thomas.heller | 2007-01-17 10:40:34 +0100 (Wed, 17 Jan 2007) | 2 lines
Replace C++ comments with C comments.
........
r53472 | andrew.kuchling | 2007-01-17 20:55:06 +0100 (Wed, 17 Jan 2007) | 1 line
[Part of bug #1599254] Add suggestion to Mailbox docs to use Maildir, and warn user to lock/unlock mailboxes when modifying them
........
r53475 | georg.brandl | 2007-01-17 22:09:04 +0100 (Wed, 17 Jan 2007) | 2 lines
Bug #1637967: missing //= operator in list.
........
r53477 | georg.brandl | 2007-01-17 22:19:58 +0100 (Wed, 17 Jan 2007) | 2 lines
Bug #1629125: fix wrong data type (int -> Py_ssize_t) in PyDict_Next docs.
........
r53481 | neal.norwitz | 2007-01-18 06:40:58 +0100 (Thu, 18 Jan 2007) | 1 line
Try reverting part of r53145 that seems to cause the Windows buildbots to fail in test_uu.UUFileTest.test_encode
........
r53482 | fred.drake | 2007-01-18 06:42:30 +0100 (Thu, 18 Jan 2007) | 1 line
add missing version entry
........
r53483 | neal.norwitz | 2007-01-18 07:20:55 +0100 (Thu, 18 Jan 2007) | 7 lines
This test doesn't pass on Windows. The cause seems to be that chmod
doesn't support the same funcationality as on Unix. I'm not sure if
this fix is the best (or if it will even work)--it's a test to see
if the buildbots start passing again.
It might be better to not even run this test if it's windows (or non-posix).
........
r53488 | neal.norwitz | 2007-01-19 06:53:33 +0100 (Fri, 19 Jan 2007) | 1 line
SF #1635217, Fix unbalanced paren
........
r53489 | martin.v.loewis | 2007-01-19 07:42:22 +0100 (Fri, 19 Jan 2007) | 3 lines
Prefix AST symbols with _Py_. Fixes #1637022.
Will backport.
........
r53497 | martin.v.loewis | 2007-01-19 19:01:38 +0100 (Fri, 19 Jan 2007) | 2 lines
Add UUIDs for 2.5.1 and 2.5.2
........
r53499 | raymond.hettinger | 2007-01-19 19:07:18 +0100 (Fri, 19 Jan 2007) | 1 line
SF# 1635892: Fix docs for betavariate's input parameters .
........
r53503 | martin.v.loewis | 2007-01-20 15:05:39 +0100 (Sat, 20 Jan 2007) | 2 lines
Merge 53501 and 53502 from 25 branch:
Add /GS- for AMD64 and Itanium builds where missing.
........
r53504 | walter.doerwald | 2007-01-20 18:28:31 +0100 (Sat, 20 Jan 2007) | 2 lines
Port test_resource.py to unittest.
........
r53505 | walter.doerwald | 2007-01-20 19:19:33 +0100 (Sat, 20 Jan 2007) | 2 lines
Add argument tests an calls of resource.getrusage().
........
r53506 | walter.doerwald | 2007-01-20 20:03:17 +0100 (Sat, 20 Jan 2007) | 2 lines
resource.RUSAGE_BOTH might not exist.
........
r53507 | walter.doerwald | 2007-01-21 00:07:28 +0100 (Sun, 21 Jan 2007) | 2 lines
Port test_new.py to unittest.
........
r53508 | martin.v.loewis | 2007-01-21 10:33:07 +0100 (Sun, 21 Jan 2007) | 2 lines
Patch #1610575: Add support for _Bool to struct.
........
r53509 | georg.brandl | 2007-01-21 11:28:43 +0100 (Sun, 21 Jan 2007) | 3 lines
Bug #1486663: don't reject keyword arguments for subclasses of builtin
types.
........
r53511 | georg.brandl | 2007-01-21 11:35:10 +0100 (Sun, 21 Jan 2007) | 2 lines
Patch #1627441: close sockets properly in urllib2.
........
r53517 | georg.brandl | 2007-01-22 20:40:21 +0100 (Mon, 22 Jan 2007) | 3 lines
Use new email module names (#1637162, #1637159, #1637157).
........
r53518 | andrew.kuchling | 2007-01-22 21:26:40 +0100 (Mon, 22 Jan 2007) | 1 line
Improve pattern used for mbox 'From' lines; add a simple test
........
r53519 | andrew.kuchling | 2007-01-22 21:27:50 +0100 (Mon, 22 Jan 2007) | 1 line
Make comment match the code
........
r53522 | georg.brandl | 2007-01-22 22:10:33 +0100 (Mon, 22 Jan 2007) | 2 lines
Bug #1249573: fix rfc822.parsedate not accepting a certain date format
........
r53524 | georg.brandl | 2007-01-22 22:23:41 +0100 (Mon, 22 Jan 2007) | 2 lines
Bug #1627316: handle error in condition/ignore pdb commands more gracefully.
........
r53526 | lars.gustaebel | 2007-01-23 12:17:33 +0100 (Tue, 23 Jan 2007) | 4 lines
Patch #1507247: tarfile.py: use current umask for intermediate
directories.
........
r53527 | thomas.wouters | 2007-01-23 14:42:00 +0100 (Tue, 23 Jan 2007) | 13 lines
SF patch #1630975: Fix crash when replacing sys.stdout in sitecustomize
When running the interpreter in an environment that would cause it to set
stdout/stderr/stdin's encoding, having a sitecustomize that would replace
them with something other than PyFile objects would crash the interpreter.
Fix it by simply ignoring the encoding-setting for non-files.
This could do with a test, but I can think of no maintainable and portable
way to test this bug, short of adding a sitecustomize.py to the buildsystem
and have it always run with it (hmmm....)
........
r53528 | thomas.wouters | 2007-01-23 14:50:49 +0100 (Tue, 23 Jan 2007) | 4 lines
Add news entry about last checkin (oops.)
........
r53531 | martin.v.loewis | 2007-01-23 22:11:47 +0100 (Tue, 23 Jan 2007) | 4 lines
Make PyTraceBack_Here use the current thread, not the
frame's thread state. Fixes #1579370.
Will backport.
........
r53535 | brett.cannon | 2007-01-24 00:21:22 +0100 (Wed, 24 Jan 2007) | 5 lines
Fix crasher for when an object's __del__ creates a new weakref to itself.
Patch only fixes new-style classes; classic classes still buggy.
Closes bug #1377858. Already backported.
........
r53536 | walter.doerwald | 2007-01-24 01:42:19 +0100 (Wed, 24 Jan 2007) | 2 lines
Port test_popen.py to unittest.
........
2007-02-01 14:02:27 -04:00
|
|
|
#define Module(a0, a1) _Py_Module(a0, a1)
|
|
|
|
mod_ty _Py_Module(asdl_seq * body, PyArena *arena);
|
|
|
|
#define Interactive(a0, a1) _Py_Interactive(a0, a1)
|
|
|
|
mod_ty _Py_Interactive(asdl_seq * body, PyArena *arena);
|
|
|
|
#define Expression(a0, a1) _Py_Expression(a0, a1)
|
|
|
|
mod_ty _Py_Expression(expr_ty body, PyArena *arena);
|
|
|
|
#define Suite(a0, a1) _Py_Suite(a0, a1)
|
|
|
|
mod_ty _Py_Suite(asdl_seq * body, PyArena *arena);
|
|
|
|
#define FunctionDef(a0, a1, a2, a3, a4, a5, a6, a7) _Py_FunctionDef(a0, a1, a2, a3, a4, a5, a6, a7)
|
|
|
|
stmt_ty _Py_FunctionDef(identifier name, arguments_ty args, asdl_seq * body,
|
|
|
|
asdl_seq * decorators, expr_ty returns, int lineno, int
|
|
|
|
col_offset, PyArena *arena);
|
|
|
|
#define ClassDef(a0, a1, a2, a3, a4, a5) _Py_ClassDef(a0, a1, a2, a3, a4, a5)
|
|
|
|
stmt_ty _Py_ClassDef(identifier name, asdl_seq * bases, asdl_seq * body, int
|
|
|
|
lineno, int col_offset, PyArena *arena);
|
|
|
|
#define Return(a0, a1, a2, a3) _Py_Return(a0, a1, a2, a3)
|
|
|
|
stmt_ty _Py_Return(expr_ty value, int lineno, int col_offset, PyArena *arena);
|
|
|
|
#define Delete(a0, a1, a2, a3) _Py_Delete(a0, a1, a2, a3)
|
|
|
|
stmt_ty _Py_Delete(asdl_seq * targets, int lineno, int col_offset, PyArena
|
|
|
|
*arena);
|
|
|
|
#define Assign(a0, a1, a2, a3, a4) _Py_Assign(a0, a1, a2, a3, a4)
|
|
|
|
stmt_ty _Py_Assign(asdl_seq * targets, expr_ty value, int lineno, int
|
2006-03-01 18:49:05 -04:00
|
|
|
col_offset, PyArena *arena);
|
Merged revisions 53451-53537 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r53454 | brett.cannon | 2007-01-15 20:12:08 +0100 (Mon, 15 Jan 2007) | 3 lines
Add a note for strptime that just because strftime supports some extra
directive that is not documented that strptime will as well.
........
r53458 | vinay.sajip | 2007-01-16 10:50:07 +0100 (Tue, 16 Jan 2007) | 1 line
Updated rotating file handlers to use _open().
........
r53459 | marc-andre.lemburg | 2007-01-16 14:03:06 +0100 (Tue, 16 Jan 2007) | 2 lines
Add news items for the recent pybench and platform changes.
........
r53460 | sjoerd.mullender | 2007-01-16 17:42:38 +0100 (Tue, 16 Jan 2007) | 4 lines
Fixed ntpath.expandvars to not replace references to non-existing
variables with nothing. Also added tests.
This fixes bug #494589.
........
r53464 | neal.norwitz | 2007-01-17 07:23:51 +0100 (Wed, 17 Jan 2007) | 1 line
Give Calvin Spealman access for python-dev summaries.
........
r53465 | neal.norwitz | 2007-01-17 09:37:26 +0100 (Wed, 17 Jan 2007) | 1 line
Remove Calvin since he only has access to the website currently.
........
r53466 | thomas.heller | 2007-01-17 10:40:34 +0100 (Wed, 17 Jan 2007) | 2 lines
Replace C++ comments with C comments.
........
r53472 | andrew.kuchling | 2007-01-17 20:55:06 +0100 (Wed, 17 Jan 2007) | 1 line
[Part of bug #1599254] Add suggestion to Mailbox docs to use Maildir, and warn user to lock/unlock mailboxes when modifying them
........
r53475 | georg.brandl | 2007-01-17 22:09:04 +0100 (Wed, 17 Jan 2007) | 2 lines
Bug #1637967: missing //= operator in list.
........
r53477 | georg.brandl | 2007-01-17 22:19:58 +0100 (Wed, 17 Jan 2007) | 2 lines
Bug #1629125: fix wrong data type (int -> Py_ssize_t) in PyDict_Next docs.
........
r53481 | neal.norwitz | 2007-01-18 06:40:58 +0100 (Thu, 18 Jan 2007) | 1 line
Try reverting part of r53145 that seems to cause the Windows buildbots to fail in test_uu.UUFileTest.test_encode
........
r53482 | fred.drake | 2007-01-18 06:42:30 +0100 (Thu, 18 Jan 2007) | 1 line
add missing version entry
........
r53483 | neal.norwitz | 2007-01-18 07:20:55 +0100 (Thu, 18 Jan 2007) | 7 lines
This test doesn't pass on Windows. The cause seems to be that chmod
doesn't support the same funcationality as on Unix. I'm not sure if
this fix is the best (or if it will even work)--it's a test to see
if the buildbots start passing again.
It might be better to not even run this test if it's windows (or non-posix).
........
r53488 | neal.norwitz | 2007-01-19 06:53:33 +0100 (Fri, 19 Jan 2007) | 1 line
SF #1635217, Fix unbalanced paren
........
r53489 | martin.v.loewis | 2007-01-19 07:42:22 +0100 (Fri, 19 Jan 2007) | 3 lines
Prefix AST symbols with _Py_. Fixes #1637022.
Will backport.
........
r53497 | martin.v.loewis | 2007-01-19 19:01:38 +0100 (Fri, 19 Jan 2007) | 2 lines
Add UUIDs for 2.5.1 and 2.5.2
........
r53499 | raymond.hettinger | 2007-01-19 19:07:18 +0100 (Fri, 19 Jan 2007) | 1 line
SF# 1635892: Fix docs for betavariate's input parameters .
........
r53503 | martin.v.loewis | 2007-01-20 15:05:39 +0100 (Sat, 20 Jan 2007) | 2 lines
Merge 53501 and 53502 from 25 branch:
Add /GS- for AMD64 and Itanium builds where missing.
........
r53504 | walter.doerwald | 2007-01-20 18:28:31 +0100 (Sat, 20 Jan 2007) | 2 lines
Port test_resource.py to unittest.
........
r53505 | walter.doerwald | 2007-01-20 19:19:33 +0100 (Sat, 20 Jan 2007) | 2 lines
Add argument tests an calls of resource.getrusage().
........
r53506 | walter.doerwald | 2007-01-20 20:03:17 +0100 (Sat, 20 Jan 2007) | 2 lines
resource.RUSAGE_BOTH might not exist.
........
r53507 | walter.doerwald | 2007-01-21 00:07:28 +0100 (Sun, 21 Jan 2007) | 2 lines
Port test_new.py to unittest.
........
r53508 | martin.v.loewis | 2007-01-21 10:33:07 +0100 (Sun, 21 Jan 2007) | 2 lines
Patch #1610575: Add support for _Bool to struct.
........
r53509 | georg.brandl | 2007-01-21 11:28:43 +0100 (Sun, 21 Jan 2007) | 3 lines
Bug #1486663: don't reject keyword arguments for subclasses of builtin
types.
........
r53511 | georg.brandl | 2007-01-21 11:35:10 +0100 (Sun, 21 Jan 2007) | 2 lines
Patch #1627441: close sockets properly in urllib2.
........
r53517 | georg.brandl | 2007-01-22 20:40:21 +0100 (Mon, 22 Jan 2007) | 3 lines
Use new email module names (#1637162, #1637159, #1637157).
........
r53518 | andrew.kuchling | 2007-01-22 21:26:40 +0100 (Mon, 22 Jan 2007) | 1 line
Improve pattern used for mbox 'From' lines; add a simple test
........
r53519 | andrew.kuchling | 2007-01-22 21:27:50 +0100 (Mon, 22 Jan 2007) | 1 line
Make comment match the code
........
r53522 | georg.brandl | 2007-01-22 22:10:33 +0100 (Mon, 22 Jan 2007) | 2 lines
Bug #1249573: fix rfc822.parsedate not accepting a certain date format
........
r53524 | georg.brandl | 2007-01-22 22:23:41 +0100 (Mon, 22 Jan 2007) | 2 lines
Bug #1627316: handle error in condition/ignore pdb commands more gracefully.
........
r53526 | lars.gustaebel | 2007-01-23 12:17:33 +0100 (Tue, 23 Jan 2007) | 4 lines
Patch #1507247: tarfile.py: use current umask for intermediate
directories.
........
r53527 | thomas.wouters | 2007-01-23 14:42:00 +0100 (Tue, 23 Jan 2007) | 13 lines
SF patch #1630975: Fix crash when replacing sys.stdout in sitecustomize
When running the interpreter in an environment that would cause it to set
stdout/stderr/stdin's encoding, having a sitecustomize that would replace
them with something other than PyFile objects would crash the interpreter.
Fix it by simply ignoring the encoding-setting for non-files.
This could do with a test, but I can think of no maintainable and portable
way to test this bug, short of adding a sitecustomize.py to the buildsystem
and have it always run with it (hmmm....)
........
r53528 | thomas.wouters | 2007-01-23 14:50:49 +0100 (Tue, 23 Jan 2007) | 4 lines
Add news entry about last checkin (oops.)
........
r53531 | martin.v.loewis | 2007-01-23 22:11:47 +0100 (Tue, 23 Jan 2007) | 4 lines
Make PyTraceBack_Here use the current thread, not the
frame's thread state. Fixes #1579370.
Will backport.
........
r53535 | brett.cannon | 2007-01-24 00:21:22 +0100 (Wed, 24 Jan 2007) | 5 lines
Fix crasher for when an object's __del__ creates a new weakref to itself.
Patch only fixes new-style classes; classic classes still buggy.
Closes bug #1377858. Already backported.
........
r53536 | walter.doerwald | 2007-01-24 01:42:19 +0100 (Wed, 24 Jan 2007) | 2 lines
Port test_popen.py to unittest.
........
2007-02-01 14:02:27 -04:00
|
|
|
#define AugAssign(a0, a1, a2, a3, a4, a5) _Py_AugAssign(a0, a1, a2, a3, a4, a5)
|
|
|
|
stmt_ty _Py_AugAssign(expr_ty target, operator_ty op, expr_ty value, int
|
|
|
|
lineno, int col_offset, PyArena *arena);
|
|
|
|
#define For(a0, a1, a2, a3, a4, a5, a6) _Py_For(a0, a1, a2, a3, a4, a5, a6)
|
|
|
|
stmt_ty _Py_For(expr_ty target, expr_ty iter, asdl_seq * body, asdl_seq *
|
|
|
|
orelse, int lineno, int col_offset, PyArena *arena);
|
|
|
|
#define While(a0, a1, a2, a3, a4, a5) _Py_While(a0, a1, a2, a3, a4, a5)
|
|
|
|
stmt_ty _Py_While(expr_ty test, asdl_seq * body, asdl_seq * orelse, int lineno,
|
|
|
|
int col_offset, PyArena *arena);
|
|
|
|
#define If(a0, a1, a2, a3, a4, a5) _Py_If(a0, a1, a2, a3, a4, a5)
|
|
|
|
stmt_ty _Py_If(expr_ty test, asdl_seq * body, asdl_seq * orelse, int lineno,
|
|
|
|
int col_offset, PyArena *arena);
|
|
|
|
#define With(a0, a1, a2, a3, a4, a5) _Py_With(a0, a1, a2, a3, a4, a5)
|
|
|
|
stmt_ty _Py_With(expr_ty context_expr, expr_ty optional_vars, asdl_seq * body,
|
|
|
|
int lineno, int col_offset, PyArena *arena);
|
|
|
|
#define Raise(a0, a1, a2, a3, a4, a5) _Py_Raise(a0, a1, a2, a3, a4, a5)
|
|
|
|
stmt_ty _Py_Raise(expr_ty type, expr_ty inst, expr_ty tback, int lineno, int
|
|
|
|
col_offset, PyArena *arena);
|
|
|
|
#define TryExcept(a0, a1, a2, a3, a4, a5) _Py_TryExcept(a0, a1, a2, a3, a4, a5)
|
|
|
|
stmt_ty _Py_TryExcept(asdl_seq * body, asdl_seq * handlers, asdl_seq * orelse,
|
|
|
|
int lineno, int col_offset, PyArena *arena);
|
|
|
|
#define TryFinally(a0, a1, a2, a3, a4) _Py_TryFinally(a0, a1, a2, a3, a4)
|
|
|
|
stmt_ty _Py_TryFinally(asdl_seq * body, asdl_seq * finalbody, int lineno, int
|
|
|
|
col_offset, PyArena *arena);
|
|
|
|
#define Assert(a0, a1, a2, a3, a4) _Py_Assert(a0, a1, a2, a3, a4)
|
|
|
|
stmt_ty _Py_Assert(expr_ty test, expr_ty msg, int lineno, int col_offset,
|
|
|
|
PyArena *arena);
|
|
|
|
#define Import(a0, a1, a2, a3) _Py_Import(a0, a1, a2, a3)
|
|
|
|
stmt_ty _Py_Import(asdl_seq * names, int lineno, int col_offset, PyArena
|
|
|
|
*arena);
|
|
|
|
#define ImportFrom(a0, a1, a2, a3, a4, a5) _Py_ImportFrom(a0, a1, a2, a3, a4, a5)
|
|
|
|
stmt_ty _Py_ImportFrom(identifier module, asdl_seq * names, int level, int
|
|
|
|
lineno, int col_offset, PyArena *arena);
|
|
|
|
#define Global(a0, a1, a2, a3) _Py_Global(a0, a1, a2, a3)
|
|
|
|
stmt_ty _Py_Global(asdl_seq * names, int lineno, int col_offset, PyArena
|
|
|
|
*arena);
|
|
|
|
#define Expr(a0, a1, a2, a3) _Py_Expr(a0, a1, a2, a3)
|
|
|
|
stmt_ty _Py_Expr(expr_ty value, int lineno, int col_offset, PyArena *arena);
|
|
|
|
#define Pass(a0, a1, a2) _Py_Pass(a0, a1, a2)
|
|
|
|
stmt_ty _Py_Pass(int lineno, int col_offset, PyArena *arena);
|
|
|
|
#define Break(a0, a1, a2) _Py_Break(a0, a1, a2)
|
|
|
|
stmt_ty _Py_Break(int lineno, int col_offset, PyArena *arena);
|
|
|
|
#define Continue(a0, a1, a2) _Py_Continue(a0, a1, a2)
|
|
|
|
stmt_ty _Py_Continue(int lineno, int col_offset, PyArena *arena);
|
|
|
|
#define BoolOp(a0, a1, a2, a3, a4) _Py_BoolOp(a0, a1, a2, a3, a4)
|
|
|
|
expr_ty _Py_BoolOp(boolop_ty op, asdl_seq * values, int lineno, int col_offset,
|
|
|
|
PyArena *arena);
|
|
|
|
#define BinOp(a0, a1, a2, a3, a4, a5) _Py_BinOp(a0, a1, a2, a3, a4, a5)
|
|
|
|
expr_ty _Py_BinOp(expr_ty left, operator_ty op, expr_ty right, int lineno, int
|
|
|
|
col_offset, PyArena *arena);
|
|
|
|
#define UnaryOp(a0, a1, a2, a3, a4) _Py_UnaryOp(a0, a1, a2, a3, a4)
|
|
|
|
expr_ty _Py_UnaryOp(unaryop_ty op, expr_ty operand, int lineno, int col_offset,
|
|
|
|
PyArena *arena);
|
|
|
|
#define Lambda(a0, a1, a2, a3, a4) _Py_Lambda(a0, a1, a2, a3, a4)
|
|
|
|
expr_ty _Py_Lambda(arguments_ty args, expr_ty body, int lineno, int col_offset,
|
|
|
|
PyArena *arena);
|
|
|
|
#define IfExp(a0, a1, a2, a3, a4, a5) _Py_IfExp(a0, a1, a2, a3, a4, a5)
|
|
|
|
expr_ty _Py_IfExp(expr_ty test, expr_ty body, expr_ty orelse, int lineno, int
|
|
|
|
col_offset, PyArena *arena);
|
|
|
|
#define Dict(a0, a1, a2, a3, a4) _Py_Dict(a0, a1, a2, a3, a4)
|
|
|
|
expr_ty _Py_Dict(asdl_seq * keys, asdl_seq * values, int lineno, int
|
2006-03-01 18:49:05 -04:00
|
|
|
col_offset, PyArena *arena);
|
Merged revisions 53451-53537 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r53454 | brett.cannon | 2007-01-15 20:12:08 +0100 (Mon, 15 Jan 2007) | 3 lines
Add a note for strptime that just because strftime supports some extra
directive that is not documented that strptime will as well.
........
r53458 | vinay.sajip | 2007-01-16 10:50:07 +0100 (Tue, 16 Jan 2007) | 1 line
Updated rotating file handlers to use _open().
........
r53459 | marc-andre.lemburg | 2007-01-16 14:03:06 +0100 (Tue, 16 Jan 2007) | 2 lines
Add news items for the recent pybench and platform changes.
........
r53460 | sjoerd.mullender | 2007-01-16 17:42:38 +0100 (Tue, 16 Jan 2007) | 4 lines
Fixed ntpath.expandvars to not replace references to non-existing
variables with nothing. Also added tests.
This fixes bug #494589.
........
r53464 | neal.norwitz | 2007-01-17 07:23:51 +0100 (Wed, 17 Jan 2007) | 1 line
Give Calvin Spealman access for python-dev summaries.
........
r53465 | neal.norwitz | 2007-01-17 09:37:26 +0100 (Wed, 17 Jan 2007) | 1 line
Remove Calvin since he only has access to the website currently.
........
r53466 | thomas.heller | 2007-01-17 10:40:34 +0100 (Wed, 17 Jan 2007) | 2 lines
Replace C++ comments with C comments.
........
r53472 | andrew.kuchling | 2007-01-17 20:55:06 +0100 (Wed, 17 Jan 2007) | 1 line
[Part of bug #1599254] Add suggestion to Mailbox docs to use Maildir, and warn user to lock/unlock mailboxes when modifying them
........
r53475 | georg.brandl | 2007-01-17 22:09:04 +0100 (Wed, 17 Jan 2007) | 2 lines
Bug #1637967: missing //= operator in list.
........
r53477 | georg.brandl | 2007-01-17 22:19:58 +0100 (Wed, 17 Jan 2007) | 2 lines
Bug #1629125: fix wrong data type (int -> Py_ssize_t) in PyDict_Next docs.
........
r53481 | neal.norwitz | 2007-01-18 06:40:58 +0100 (Thu, 18 Jan 2007) | 1 line
Try reverting part of r53145 that seems to cause the Windows buildbots to fail in test_uu.UUFileTest.test_encode
........
r53482 | fred.drake | 2007-01-18 06:42:30 +0100 (Thu, 18 Jan 2007) | 1 line
add missing version entry
........
r53483 | neal.norwitz | 2007-01-18 07:20:55 +0100 (Thu, 18 Jan 2007) | 7 lines
This test doesn't pass on Windows. The cause seems to be that chmod
doesn't support the same funcationality as on Unix. I'm not sure if
this fix is the best (or if it will even work)--it's a test to see
if the buildbots start passing again.
It might be better to not even run this test if it's windows (or non-posix).
........
r53488 | neal.norwitz | 2007-01-19 06:53:33 +0100 (Fri, 19 Jan 2007) | 1 line
SF #1635217, Fix unbalanced paren
........
r53489 | martin.v.loewis | 2007-01-19 07:42:22 +0100 (Fri, 19 Jan 2007) | 3 lines
Prefix AST symbols with _Py_. Fixes #1637022.
Will backport.
........
r53497 | martin.v.loewis | 2007-01-19 19:01:38 +0100 (Fri, 19 Jan 2007) | 2 lines
Add UUIDs for 2.5.1 and 2.5.2
........
r53499 | raymond.hettinger | 2007-01-19 19:07:18 +0100 (Fri, 19 Jan 2007) | 1 line
SF# 1635892: Fix docs for betavariate's input parameters .
........
r53503 | martin.v.loewis | 2007-01-20 15:05:39 +0100 (Sat, 20 Jan 2007) | 2 lines
Merge 53501 and 53502 from 25 branch:
Add /GS- for AMD64 and Itanium builds where missing.
........
r53504 | walter.doerwald | 2007-01-20 18:28:31 +0100 (Sat, 20 Jan 2007) | 2 lines
Port test_resource.py to unittest.
........
r53505 | walter.doerwald | 2007-01-20 19:19:33 +0100 (Sat, 20 Jan 2007) | 2 lines
Add argument tests an calls of resource.getrusage().
........
r53506 | walter.doerwald | 2007-01-20 20:03:17 +0100 (Sat, 20 Jan 2007) | 2 lines
resource.RUSAGE_BOTH might not exist.
........
r53507 | walter.doerwald | 2007-01-21 00:07:28 +0100 (Sun, 21 Jan 2007) | 2 lines
Port test_new.py to unittest.
........
r53508 | martin.v.loewis | 2007-01-21 10:33:07 +0100 (Sun, 21 Jan 2007) | 2 lines
Patch #1610575: Add support for _Bool to struct.
........
r53509 | georg.brandl | 2007-01-21 11:28:43 +0100 (Sun, 21 Jan 2007) | 3 lines
Bug #1486663: don't reject keyword arguments for subclasses of builtin
types.
........
r53511 | georg.brandl | 2007-01-21 11:35:10 +0100 (Sun, 21 Jan 2007) | 2 lines
Patch #1627441: close sockets properly in urllib2.
........
r53517 | georg.brandl | 2007-01-22 20:40:21 +0100 (Mon, 22 Jan 2007) | 3 lines
Use new email module names (#1637162, #1637159, #1637157).
........
r53518 | andrew.kuchling | 2007-01-22 21:26:40 +0100 (Mon, 22 Jan 2007) | 1 line
Improve pattern used for mbox 'From' lines; add a simple test
........
r53519 | andrew.kuchling | 2007-01-22 21:27:50 +0100 (Mon, 22 Jan 2007) | 1 line
Make comment match the code
........
r53522 | georg.brandl | 2007-01-22 22:10:33 +0100 (Mon, 22 Jan 2007) | 2 lines
Bug #1249573: fix rfc822.parsedate not accepting a certain date format
........
r53524 | georg.brandl | 2007-01-22 22:23:41 +0100 (Mon, 22 Jan 2007) | 2 lines
Bug #1627316: handle error in condition/ignore pdb commands more gracefully.
........
r53526 | lars.gustaebel | 2007-01-23 12:17:33 +0100 (Tue, 23 Jan 2007) | 4 lines
Patch #1507247: tarfile.py: use current umask for intermediate
directories.
........
r53527 | thomas.wouters | 2007-01-23 14:42:00 +0100 (Tue, 23 Jan 2007) | 13 lines
SF patch #1630975: Fix crash when replacing sys.stdout in sitecustomize
When running the interpreter in an environment that would cause it to set
stdout/stderr/stdin's encoding, having a sitecustomize that would replace
them with something other than PyFile objects would crash the interpreter.
Fix it by simply ignoring the encoding-setting for non-files.
This could do with a test, but I can think of no maintainable and portable
way to test this bug, short of adding a sitecustomize.py to the buildsystem
and have it always run with it (hmmm....)
........
r53528 | thomas.wouters | 2007-01-23 14:50:49 +0100 (Tue, 23 Jan 2007) | 4 lines
Add news entry about last checkin (oops.)
........
r53531 | martin.v.loewis | 2007-01-23 22:11:47 +0100 (Tue, 23 Jan 2007) | 4 lines
Make PyTraceBack_Here use the current thread, not the
frame's thread state. Fixes #1579370.
Will backport.
........
r53535 | brett.cannon | 2007-01-24 00:21:22 +0100 (Wed, 24 Jan 2007) | 5 lines
Fix crasher for when an object's __del__ creates a new weakref to itself.
Patch only fixes new-style classes; classic classes still buggy.
Closes bug #1377858. Already backported.
........
r53536 | walter.doerwald | 2007-01-24 01:42:19 +0100 (Wed, 24 Jan 2007) | 2 lines
Port test_popen.py to unittest.
........
2007-02-01 14:02:27 -04:00
|
|
|
#define Set(a0, a1, a2, a3) _Py_Set(a0, a1, a2, a3)
|
|
|
|
expr_ty _Py_Set(asdl_seq * elts, int lineno, int col_offset, PyArena *arena);
|
|
|
|
#define ListComp(a0, a1, a2, a3, a4) _Py_ListComp(a0, a1, a2, a3, a4)
|
|
|
|
expr_ty _Py_ListComp(expr_ty elt, asdl_seq * generators, int lineno, int
|
2006-03-01 18:49:05 -04:00
|
|
|
col_offset, PyArena *arena);
|
Merged revisions 53451-53537 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r53454 | brett.cannon | 2007-01-15 20:12:08 +0100 (Mon, 15 Jan 2007) | 3 lines
Add a note for strptime that just because strftime supports some extra
directive that is not documented that strptime will as well.
........
r53458 | vinay.sajip | 2007-01-16 10:50:07 +0100 (Tue, 16 Jan 2007) | 1 line
Updated rotating file handlers to use _open().
........
r53459 | marc-andre.lemburg | 2007-01-16 14:03:06 +0100 (Tue, 16 Jan 2007) | 2 lines
Add news items for the recent pybench and platform changes.
........
r53460 | sjoerd.mullender | 2007-01-16 17:42:38 +0100 (Tue, 16 Jan 2007) | 4 lines
Fixed ntpath.expandvars to not replace references to non-existing
variables with nothing. Also added tests.
This fixes bug #494589.
........
r53464 | neal.norwitz | 2007-01-17 07:23:51 +0100 (Wed, 17 Jan 2007) | 1 line
Give Calvin Spealman access for python-dev summaries.
........
r53465 | neal.norwitz | 2007-01-17 09:37:26 +0100 (Wed, 17 Jan 2007) | 1 line
Remove Calvin since he only has access to the website currently.
........
r53466 | thomas.heller | 2007-01-17 10:40:34 +0100 (Wed, 17 Jan 2007) | 2 lines
Replace C++ comments with C comments.
........
r53472 | andrew.kuchling | 2007-01-17 20:55:06 +0100 (Wed, 17 Jan 2007) | 1 line
[Part of bug #1599254] Add suggestion to Mailbox docs to use Maildir, and warn user to lock/unlock mailboxes when modifying them
........
r53475 | georg.brandl | 2007-01-17 22:09:04 +0100 (Wed, 17 Jan 2007) | 2 lines
Bug #1637967: missing //= operator in list.
........
r53477 | georg.brandl | 2007-01-17 22:19:58 +0100 (Wed, 17 Jan 2007) | 2 lines
Bug #1629125: fix wrong data type (int -> Py_ssize_t) in PyDict_Next docs.
........
r53481 | neal.norwitz | 2007-01-18 06:40:58 +0100 (Thu, 18 Jan 2007) | 1 line
Try reverting part of r53145 that seems to cause the Windows buildbots to fail in test_uu.UUFileTest.test_encode
........
r53482 | fred.drake | 2007-01-18 06:42:30 +0100 (Thu, 18 Jan 2007) | 1 line
add missing version entry
........
r53483 | neal.norwitz | 2007-01-18 07:20:55 +0100 (Thu, 18 Jan 2007) | 7 lines
This test doesn't pass on Windows. The cause seems to be that chmod
doesn't support the same funcationality as on Unix. I'm not sure if
this fix is the best (or if it will even work)--it's a test to see
if the buildbots start passing again.
It might be better to not even run this test if it's windows (or non-posix).
........
r53488 | neal.norwitz | 2007-01-19 06:53:33 +0100 (Fri, 19 Jan 2007) | 1 line
SF #1635217, Fix unbalanced paren
........
r53489 | martin.v.loewis | 2007-01-19 07:42:22 +0100 (Fri, 19 Jan 2007) | 3 lines
Prefix AST symbols with _Py_. Fixes #1637022.
Will backport.
........
r53497 | martin.v.loewis | 2007-01-19 19:01:38 +0100 (Fri, 19 Jan 2007) | 2 lines
Add UUIDs for 2.5.1 and 2.5.2
........
r53499 | raymond.hettinger | 2007-01-19 19:07:18 +0100 (Fri, 19 Jan 2007) | 1 line
SF# 1635892: Fix docs for betavariate's input parameters .
........
r53503 | martin.v.loewis | 2007-01-20 15:05:39 +0100 (Sat, 20 Jan 2007) | 2 lines
Merge 53501 and 53502 from 25 branch:
Add /GS- for AMD64 and Itanium builds where missing.
........
r53504 | walter.doerwald | 2007-01-20 18:28:31 +0100 (Sat, 20 Jan 2007) | 2 lines
Port test_resource.py to unittest.
........
r53505 | walter.doerwald | 2007-01-20 19:19:33 +0100 (Sat, 20 Jan 2007) | 2 lines
Add argument tests an calls of resource.getrusage().
........
r53506 | walter.doerwald | 2007-01-20 20:03:17 +0100 (Sat, 20 Jan 2007) | 2 lines
resource.RUSAGE_BOTH might not exist.
........
r53507 | walter.doerwald | 2007-01-21 00:07:28 +0100 (Sun, 21 Jan 2007) | 2 lines
Port test_new.py to unittest.
........
r53508 | martin.v.loewis | 2007-01-21 10:33:07 +0100 (Sun, 21 Jan 2007) | 2 lines
Patch #1610575: Add support for _Bool to struct.
........
r53509 | georg.brandl | 2007-01-21 11:28:43 +0100 (Sun, 21 Jan 2007) | 3 lines
Bug #1486663: don't reject keyword arguments for subclasses of builtin
types.
........
r53511 | georg.brandl | 2007-01-21 11:35:10 +0100 (Sun, 21 Jan 2007) | 2 lines
Patch #1627441: close sockets properly in urllib2.
........
r53517 | georg.brandl | 2007-01-22 20:40:21 +0100 (Mon, 22 Jan 2007) | 3 lines
Use new email module names (#1637162, #1637159, #1637157).
........
r53518 | andrew.kuchling | 2007-01-22 21:26:40 +0100 (Mon, 22 Jan 2007) | 1 line
Improve pattern used for mbox 'From' lines; add a simple test
........
r53519 | andrew.kuchling | 2007-01-22 21:27:50 +0100 (Mon, 22 Jan 2007) | 1 line
Make comment match the code
........
r53522 | georg.brandl | 2007-01-22 22:10:33 +0100 (Mon, 22 Jan 2007) | 2 lines
Bug #1249573: fix rfc822.parsedate not accepting a certain date format
........
r53524 | georg.brandl | 2007-01-22 22:23:41 +0100 (Mon, 22 Jan 2007) | 2 lines
Bug #1627316: handle error in condition/ignore pdb commands more gracefully.
........
r53526 | lars.gustaebel | 2007-01-23 12:17:33 +0100 (Tue, 23 Jan 2007) | 4 lines
Patch #1507247: tarfile.py: use current umask for intermediate
directories.
........
r53527 | thomas.wouters | 2007-01-23 14:42:00 +0100 (Tue, 23 Jan 2007) | 13 lines
SF patch #1630975: Fix crash when replacing sys.stdout in sitecustomize
When running the interpreter in an environment that would cause it to set
stdout/stderr/stdin's encoding, having a sitecustomize that would replace
them with something other than PyFile objects would crash the interpreter.
Fix it by simply ignoring the encoding-setting for non-files.
This could do with a test, but I can think of no maintainable and portable
way to test this bug, short of adding a sitecustomize.py to the buildsystem
and have it always run with it (hmmm....)
........
r53528 | thomas.wouters | 2007-01-23 14:50:49 +0100 (Tue, 23 Jan 2007) | 4 lines
Add news entry about last checkin (oops.)
........
r53531 | martin.v.loewis | 2007-01-23 22:11:47 +0100 (Tue, 23 Jan 2007) | 4 lines
Make PyTraceBack_Here use the current thread, not the
frame's thread state. Fixes #1579370.
Will backport.
........
r53535 | brett.cannon | 2007-01-24 00:21:22 +0100 (Wed, 24 Jan 2007) | 5 lines
Fix crasher for when an object's __del__ creates a new weakref to itself.
Patch only fixes new-style classes; classic classes still buggy.
Closes bug #1377858. Already backported.
........
r53536 | walter.doerwald | 2007-01-24 01:42:19 +0100 (Wed, 24 Jan 2007) | 2 lines
Port test_popen.py to unittest.
........
2007-02-01 14:02:27 -04:00
|
|
|
#define GeneratorExp(a0, a1, a2, a3, a4) _Py_GeneratorExp(a0, a1, a2, a3, a4)
|
|
|
|
expr_ty _Py_GeneratorExp(expr_ty elt, asdl_seq * generators, int lineno, int
|
|
|
|
col_offset, PyArena *arena);
|
|
|
|
#define Yield(a0, a1, a2, a3) _Py_Yield(a0, a1, a2, a3)
|
|
|
|
expr_ty _Py_Yield(expr_ty value, int lineno, int col_offset, PyArena *arena);
|
|
|
|
#define Compare(a0, a1, a2, a3, a4, a5) _Py_Compare(a0, a1, a2, a3, a4, a5)
|
|
|
|
expr_ty _Py_Compare(expr_ty left, asdl_int_seq * ops, asdl_seq * comparators,
|
|
|
|
int lineno, int col_offset, PyArena *arena);
|
|
|
|
#define Call(a0, a1, a2, a3, a4, a5, a6, a7) _Py_Call(a0, a1, a2, a3, a4, a5, a6, a7)
|
|
|
|
expr_ty _Py_Call(expr_ty func, asdl_seq * args, asdl_seq * keywords, expr_ty
|
|
|
|
starargs, expr_ty kwargs, int lineno, int col_offset, PyArena
|
|
|
|
*arena);
|
|
|
|
#define Num(a0, a1, a2, a3) _Py_Num(a0, a1, a2, a3)
|
|
|
|
expr_ty _Py_Num(object n, int lineno, int col_offset, PyArena *arena);
|
|
|
|
#define Str(a0, a1, a2, a3) _Py_Str(a0, a1, a2, a3)
|
|
|
|
expr_ty _Py_Str(string s, int lineno, int col_offset, PyArena *arena);
|
|
|
|
#define Ellipsis(a0, a1, a2) _Py_Ellipsis(a0, a1, a2)
|
|
|
|
expr_ty _Py_Ellipsis(int lineno, int col_offset, PyArena *arena);
|
|
|
|
#define Attribute(a0, a1, a2, a3, a4, a5) _Py_Attribute(a0, a1, a2, a3, a4, a5)
|
|
|
|
expr_ty _Py_Attribute(expr_ty value, identifier attr, expr_context_ty ctx, int
|
|
|
|
lineno, int col_offset, PyArena *arena);
|
|
|
|
#define Subscript(a0, a1, a2, a3, a4, a5) _Py_Subscript(a0, a1, a2, a3, a4, a5)
|
|
|
|
expr_ty _Py_Subscript(expr_ty value, slice_ty slice, expr_context_ty ctx, int
|
|
|
|
lineno, int col_offset, PyArena *arena);
|
|
|
|
#define Name(a0, a1, a2, a3, a4) _Py_Name(a0, a1, a2, a3, a4)
|
|
|
|
expr_ty _Py_Name(identifier id, expr_context_ty ctx, int lineno, int
|
|
|
|
col_offset, PyArena *arena);
|
|
|
|
#define List(a0, a1, a2, a3, a4) _Py_List(a0, a1, a2, a3, a4)
|
|
|
|
expr_ty _Py_List(asdl_seq * elts, expr_context_ty ctx, int lineno, int
|
|
|
|
col_offset, PyArena *arena);
|
|
|
|
#define Tuple(a0, a1, a2, a3, a4) _Py_Tuple(a0, a1, a2, a3, a4)
|
|
|
|
expr_ty _Py_Tuple(asdl_seq * elts, expr_context_ty ctx, int lineno, int
|
|
|
|
col_offset, PyArena *arena);
|
|
|
|
#define Slice(a0, a1, a2, a3) _Py_Slice(a0, a1, a2, a3)
|
|
|
|
slice_ty _Py_Slice(expr_ty lower, expr_ty upper, expr_ty step, PyArena *arena);
|
|
|
|
#define ExtSlice(a0, a1) _Py_ExtSlice(a0, a1)
|
|
|
|
slice_ty _Py_ExtSlice(asdl_seq * dims, PyArena *arena);
|
|
|
|
#define Index(a0, a1) _Py_Index(a0, a1)
|
|
|
|
slice_ty _Py_Index(expr_ty value, PyArena *arena);
|
|
|
|
#define comprehension(a0, a1, a2, a3) _Py_comprehension(a0, a1, a2, a3)
|
|
|
|
comprehension_ty _Py_comprehension(expr_ty target, expr_ty iter, asdl_seq *
|
|
|
|
ifs, PyArena *arena);
|
|
|
|
#define excepthandler(a0, a1, a2, a3, a4, a5) _Py_excepthandler(a0, a1, a2, a3, a4, a5)
|
|
|
|
excepthandler_ty _Py_excepthandler(expr_ty type, identifier name, asdl_seq *
|
|
|
|
body, int lineno, int col_offset, PyArena
|
|
|
|
*arena);
|
|
|
|
#define arguments(a0, a1, a2, a3, a4, a5, a6, a7, a8) _Py_arguments(a0, a1, a2, a3, a4, a5, a6, a7, a8)
|
|
|
|
arguments_ty _Py_arguments(asdl_seq * args, identifier vararg, expr_ty
|
|
|
|
varargannotation, asdl_seq * kwonlyargs, identifier
|
|
|
|
kwarg, expr_ty kwargannotation, asdl_seq * defaults,
|
|
|
|
asdl_seq * kw_defaults, PyArena *arena);
|
|
|
|
#define SimpleArg(a0, a1, a2) _Py_SimpleArg(a0, a1, a2)
|
|
|
|
arg_ty _Py_SimpleArg(identifier arg, expr_ty annotation, PyArena *arena);
|
|
|
|
#define NestedArgs(a0, a1) _Py_NestedArgs(a0, a1)
|
|
|
|
arg_ty _Py_NestedArgs(asdl_seq * args, PyArena *arena);
|
|
|
|
#define keyword(a0, a1, a2) _Py_keyword(a0, a1, a2)
|
|
|
|
keyword_ty _Py_keyword(identifier arg, expr_ty value, PyArena *arena);
|
|
|
|
#define alias(a0, a1, a2) _Py_alias(a0, a1, a2)
|
|
|
|
alias_ty _Py_alias(identifier name, identifier asname, PyArena *arena);
|
2005-11-13 15:14:20 -04:00
|
|
|
|
2006-02-26 15:42:26 -04:00
|
|
|
PyObject* PyAST_mod2obj(mod_ty t);
|