2005-10-20 16:59:25 -03:00
|
|
|
#! /usr/bin/env python
|
|
|
|
"""Generate C code from an ASDL description."""
|
|
|
|
|
|
|
|
# TO DO
|
|
|
|
# handle fields that have a type but no name
|
|
|
|
|
|
|
|
import os, sys, traceback
|
|
|
|
|
|
|
|
import asdl
|
|
|
|
|
|
|
|
TABSIZE = 8
|
|
|
|
MAX_COL = 80
|
|
|
|
|
|
|
|
def get_c_type(name):
|
|
|
|
"""Return a string for the C name of the type.
|
|
|
|
|
|
|
|
This function special cases the default types provided by asdl:
|
2007-02-26 15:04:49 -04:00
|
|
|
identifier, string, int.
|
2005-10-20 16:59:25 -03:00
|
|
|
"""
|
|
|
|
# XXX ack! need to figure out where Id is useful and where string
|
|
|
|
if isinstance(name, asdl.Id):
|
|
|
|
name = name.value
|
|
|
|
if name in asdl.builtin_types:
|
|
|
|
return name
|
|
|
|
else:
|
|
|
|
return "%s_ty" % name
|
|
|
|
|
|
|
|
def reflow_lines(s, depth):
|
|
|
|
"""Reflow the line s indented depth tabs.
|
|
|
|
|
|
|
|
Return a sequence of lines where no line extends beyond MAX_COL
|
|
|
|
when properly indented. The first line is properly indented based
|
|
|
|
exclusively on depth * TABSIZE. All following lines -- these are
|
|
|
|
the reflowed lines generated by this function -- start at the same
|
|
|
|
column as the first character beyond the opening { in the first
|
|
|
|
line.
|
|
|
|
"""
|
|
|
|
size = MAX_COL - depth * TABSIZE
|
|
|
|
if len(s) < size:
|
|
|
|
return [s]
|
|
|
|
|
|
|
|
lines = []
|
|
|
|
cur = s
|
|
|
|
padding = ""
|
|
|
|
while len(cur) > size:
|
|
|
|
i = cur.rfind(' ', 0, size)
|
|
|
|
# XXX this should be fixed for real
|
|
|
|
if i == -1 and 'GeneratorExp' in cur:
|
|
|
|
i = size + 3
|
2006-08-25 01:06:31 -03:00
|
|
|
assert i != -1, "Impossible line %d to reflow: %r" % (size, s)
|
2005-10-20 16:59:25 -03:00
|
|
|
lines.append(padding + cur[:i])
|
|
|
|
if len(lines) == 1:
|
|
|
|
# find new size based on brace
|
|
|
|
j = cur.find('{', 0, i)
|
|
|
|
if j >= 0:
|
|
|
|
j += 2 # account for the brace and the space after it
|
|
|
|
size -= j
|
|
|
|
padding = " " * j
|
|
|
|
else:
|
|
|
|
j = cur.find('(', 0, i)
|
|
|
|
if j >= 0:
|
|
|
|
j += 1 # account for the paren (no space after it)
|
|
|
|
size -= j
|
|
|
|
padding = " " * j
|
|
|
|
cur = cur[i+1:]
|
|
|
|
else:
|
|
|
|
lines.append(padding + cur)
|
|
|
|
return lines
|
|
|
|
|
|
|
|
def is_simple(sum):
|
|
|
|
"""Return True if a sum is a simple.
|
|
|
|
|
|
|
|
A sum is simple if its types have no fields, e.g.
|
|
|
|
unaryop = Invert | Not | UAdd | USub
|
|
|
|
"""
|
|
|
|
|
|
|
|
for t in sum.types:
|
|
|
|
if t.fields:
|
|
|
|
return False
|
|
|
|
return True
|
|
|
|
|
|
|
|
class EmitVisitor(asdl.VisitorBase):
|
|
|
|
"""Visit that emits lines"""
|
|
|
|
|
|
|
|
def __init__(self, file):
|
|
|
|
self.file = file
|
|
|
|
super(EmitVisitor, self).__init__()
|
|
|
|
|
|
|
|
def emit(self, s, depth, reflow=1):
|
|
|
|
# XXX reflow long lines?
|
|
|
|
if reflow:
|
|
|
|
lines = reflow_lines(s, depth)
|
|
|
|
else:
|
|
|
|
lines = [s]
|
|
|
|
for line in lines:
|
|
|
|
line = (" " * TABSIZE * depth) + line + "\n"
|
|
|
|
self.file.write(line)
|
|
|
|
|
|
|
|
class TypeDefVisitor(EmitVisitor):
|
|
|
|
def visitModule(self, mod):
|
|
|
|
for dfn in mod.dfns:
|
|
|
|
self.visit(dfn)
|
|
|
|
|
|
|
|
def visitType(self, type, depth=0):
|
|
|
|
self.visit(type.value, type.name, depth)
|
|
|
|
|
|
|
|
def visitSum(self, sum, name, depth):
|
|
|
|
if is_simple(sum):
|
|
|
|
self.simple_sum(sum, name, depth)
|
|
|
|
else:
|
|
|
|
self.sum_with_constructors(sum, name, depth)
|
|
|
|
|
|
|
|
def simple_sum(self, sum, name, depth):
|
|
|
|
enum = []
|
|
|
|
for i in range(len(sum.types)):
|
|
|
|
type = sum.types[i]
|
|
|
|
enum.append("%s=%d" % (type.name, i + 1))
|
|
|
|
enums = ", ".join(enum)
|
|
|
|
ctype = get_c_type(name)
|
|
|
|
s = "typedef enum _%s { %s } %s;" % (name, enums, ctype)
|
|
|
|
self.emit(s, depth)
|
|
|
|
self.emit("", depth)
|
|
|
|
|
|
|
|
def sum_with_constructors(self, sum, name, depth):
|
|
|
|
ctype = get_c_type(name)
|
|
|
|
s = "typedef struct _%(name)s *%(ctype)s;" % locals()
|
|
|
|
self.emit(s, depth)
|
|
|
|
self.emit("", depth)
|
|
|
|
|
|
|
|
def visitProduct(self, product, name, depth):
|
|
|
|
ctype = get_c_type(name)
|
|
|
|
s = "typedef struct _%(name)s *%(ctype)s;" % locals()
|
|
|
|
self.emit(s, depth)
|
|
|
|
self.emit("", depth)
|
|
|
|
|
|
|
|
class StructVisitor(EmitVisitor):
|
|
|
|
"""Visitor to generate typdefs for AST."""
|
|
|
|
|
|
|
|
def visitModule(self, mod):
|
|
|
|
for dfn in mod.dfns:
|
|
|
|
self.visit(dfn)
|
|
|
|
|
|
|
|
def visitType(self, type, depth=0):
|
|
|
|
self.visit(type.value, type.name, depth)
|
|
|
|
|
|
|
|
def visitSum(self, sum, name, depth):
|
|
|
|
if not is_simple(sum):
|
|
|
|
self.sum_with_constructors(sum, name, depth)
|
|
|
|
|
|
|
|
def sum_with_constructors(self, sum, name, depth):
|
|
|
|
def emit(s, depth=depth):
|
|
|
|
self.emit(s % sys._getframe(1).f_locals, depth)
|
|
|
|
enum = []
|
|
|
|
for i in range(len(sum.types)):
|
|
|
|
type = sum.types[i]
|
|
|
|
enum.append("%s_kind=%d" % (type.name, i + 1))
|
|
|
|
|
2006-04-21 07:40:58 -03:00
|
|
|
emit("enum _%(name)s_kind {" + ", ".join(enum) + "};")
|
|
|
|
|
2005-10-20 16:59:25 -03:00
|
|
|
emit("struct _%(name)s {")
|
2006-04-21 07:40:58 -03:00
|
|
|
emit("enum _%(name)s_kind kind;", depth + 1)
|
2005-10-20 16:59:25 -03:00
|
|
|
emit("union {", depth + 1)
|
|
|
|
for t in sum.types:
|
|
|
|
self.visit(t, depth + 2)
|
|
|
|
emit("} v;", depth + 1)
|
|
|
|
for field in sum.attributes:
|
|
|
|
# rudimentary attribute handling
|
|
|
|
type = str(field.type)
|
|
|
|
assert type in asdl.builtin_types, type
|
|
|
|
emit("%s %s;" % (type, field.name), depth + 1);
|
|
|
|
emit("};")
|
|
|
|
emit("")
|
|
|
|
|
|
|
|
def visitConstructor(self, cons, depth):
|
|
|
|
if cons.fields:
|
|
|
|
self.emit("struct {", depth)
|
|
|
|
for f in cons.fields:
|
|
|
|
self.visit(f, depth + 1)
|
|
|
|
self.emit("} %s;" % cons.name, depth)
|
|
|
|
self.emit("", depth)
|
|
|
|
else:
|
|
|
|
# XXX not sure what I want here, nothing is probably fine
|
|
|
|
pass
|
|
|
|
|
|
|
|
def visitField(self, field, depth):
|
|
|
|
# XXX need to lookup field.type, because it might be something
|
|
|
|
# like a builtin...
|
|
|
|
ctype = get_c_type(field.type)
|
|
|
|
name = field.name
|
|
|
|
if field.seq:
|
2006-04-21 07:40:58 -03:00
|
|
|
if field.type.value in ('cmpop',):
|
|
|
|
self.emit("asdl_int_seq *%(name)s;" % locals(), depth)
|
|
|
|
else:
|
|
|
|
self.emit("asdl_seq *%(name)s;" % locals(), depth)
|
2005-10-20 16:59:25 -03:00
|
|
|
else:
|
|
|
|
self.emit("%(ctype)s %(name)s;" % locals(), depth)
|
|
|
|
|
|
|
|
def visitProduct(self, product, name, depth):
|
|
|
|
self.emit("struct _%(name)s {" % locals(), depth)
|
|
|
|
for f in product.fields:
|
|
|
|
self.visit(f, depth + 1)
|
|
|
|
self.emit("};", depth)
|
|
|
|
self.emit("", depth)
|
|
|
|
|
|
|
|
class PrototypeVisitor(EmitVisitor):
|
|
|
|
"""Generate function prototypes for the .h file"""
|
|
|
|
|
|
|
|
def visitModule(self, mod):
|
|
|
|
for dfn in mod.dfns:
|
|
|
|
self.visit(dfn)
|
|
|
|
|
|
|
|
def visitType(self, type):
|
|
|
|
self.visit(type.value, type.name)
|
|
|
|
|
|
|
|
def visitSum(self, sum, name):
|
|
|
|
if is_simple(sum):
|
|
|
|
pass # XXX
|
|
|
|
else:
|
|
|
|
for t in sum.types:
|
|
|
|
self.visit(t, name, sum.attributes)
|
|
|
|
|
|
|
|
def get_args(self, fields):
|
|
|
|
"""Return list of C argument into, one for each field.
|
|
|
|
|
|
|
|
Argument info is 3-tuple of a C type, variable name, and flag
|
|
|
|
that is true if type can be NULL.
|
|
|
|
"""
|
|
|
|
args = []
|
|
|
|
unnamed = {}
|
|
|
|
for f in fields:
|
|
|
|
if f.name is None:
|
|
|
|
name = f.type
|
|
|
|
c = unnamed[name] = unnamed.get(name, 0) + 1
|
|
|
|
if c > 1:
|
|
|
|
name = "name%d" % (c - 1)
|
|
|
|
else:
|
|
|
|
name = f.name
|
|
|
|
# XXX should extend get_c_type() to handle this
|
|
|
|
if f.seq:
|
2006-04-21 07:40:58 -03:00
|
|
|
if f.type.value in ('cmpop',):
|
|
|
|
ctype = "asdl_int_seq *"
|
|
|
|
else:
|
|
|
|
ctype = "asdl_seq *"
|
2005-10-20 16:59:25 -03:00
|
|
|
else:
|
|
|
|
ctype = get_c_type(f.type)
|
|
|
|
args.append((ctype, name, f.opt or f.seq))
|
|
|
|
return args
|
|
|
|
|
|
|
|
def visitConstructor(self, cons, type, attrs):
|
|
|
|
args = self.get_args(cons.fields)
|
|
|
|
attrs = self.get_args(attrs)
|
|
|
|
ctype = get_c_type(type)
|
|
|
|
self.emit_function(cons.name, ctype, args, attrs)
|
|
|
|
|
|
|
|
def emit_function(self, name, ctype, args, attrs, union=1):
|
|
|
|
args = args + attrs
|
|
|
|
if args:
|
|
|
|
argstr = ", ".join(["%s %s" % (atype, aname)
|
|
|
|
for atype, aname, opt in args])
|
2005-12-17 16:54:49 -04:00
|
|
|
argstr += ", PyArena *arena"
|
2005-10-20 16:59:25 -03:00
|
|
|
else:
|
2005-12-17 16:54:49 -04:00
|
|
|
argstr = "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
|
|
|
margs = "a0"
|
|
|
|
for i in range(1, len(args)+1):
|
|
|
|
margs += ", a%d" % i
|
|
|
|
self.emit("#define %s(%s) _Py_%s(%s)" % (name, margs, name, margs), 0,
|
|
|
|
reflow = 0)
|
|
|
|
self.emit("%s _Py_%s(%s);" % (ctype, name, argstr), 0)
|
2005-10-20 16:59:25 -03:00
|
|
|
|
|
|
|
def visitProduct(self, prod, name):
|
|
|
|
self.emit_function(name, get_c_type(name),
|
|
|
|
self.get_args(prod.fields), [], union=0)
|
|
|
|
|
|
|
|
class FunctionVisitor(PrototypeVisitor):
|
|
|
|
"""Visitor to generate constructor functions for AST."""
|
|
|
|
|
|
|
|
def emit_function(self, name, ctype, args, attrs, union=1):
|
|
|
|
def emit(s, depth=0, reflow=1):
|
|
|
|
self.emit(s, depth, reflow)
|
|
|
|
argstr = ", ".join(["%s %s" % (atype, aname)
|
|
|
|
for atype, aname, opt in args + attrs])
|
2005-12-17 16:54:49 -04:00
|
|
|
if argstr:
|
|
|
|
argstr += ", PyArena *arena"
|
|
|
|
else:
|
|
|
|
argstr = "PyArena *arena"
|
2005-10-20 16:59:25 -03:00
|
|
|
self.emit("%s" % ctype, 0)
|
|
|
|
emit("%s(%s)" % (name, argstr))
|
|
|
|
emit("{")
|
|
|
|
emit("%s p;" % ctype, 1)
|
|
|
|
for argtype, argname, opt in args:
|
2007-02-26 15:04:49 -04:00
|
|
|
if not opt and argtype != "int":
|
2005-10-20 16:59:25 -03:00
|
|
|
emit("if (!%s) {" % argname, 1)
|
|
|
|
emit("PyErr_SetString(PyExc_ValueError,", 2)
|
|
|
|
msg = "field %s is required for %s" % (argname, name)
|
|
|
|
emit(' "%s");' % msg,
|
|
|
|
2, reflow=0)
|
|
|
|
emit('return NULL;', 2)
|
|
|
|
emit('}', 1)
|
|
|
|
|
2005-12-17 16:54:49 -04:00
|
|
|
emit("p = (%s)PyArena_Malloc(arena, sizeof(*p));" % ctype, 1);
|
2007-02-26 14:20:15 -04:00
|
|
|
emit("if (!p)", 1)
|
2005-10-20 16:59:25 -03:00
|
|
|
emit("return NULL;", 2)
|
|
|
|
if union:
|
|
|
|
self.emit_body_union(name, args, attrs)
|
|
|
|
else:
|
|
|
|
self.emit_body_struct(name, args, attrs)
|
|
|
|
emit("return p;", 1)
|
|
|
|
emit("}")
|
|
|
|
emit("")
|
|
|
|
|
|
|
|
def emit_body_union(self, name, args, attrs):
|
|
|
|
def emit(s, depth=0, reflow=1):
|
|
|
|
self.emit(s, depth, reflow)
|
|
|
|
emit("p->kind = %s_kind;" % name, 1)
|
|
|
|
for argtype, argname, opt in args:
|
|
|
|
emit("p->v.%s.%s = %s;" % (name, argname, argname), 1)
|
|
|
|
for argtype, argname, opt in attrs:
|
|
|
|
emit("p->%s = %s;" % (argname, argname), 1)
|
|
|
|
|
|
|
|
def emit_body_struct(self, name, args, attrs):
|
|
|
|
def emit(s, depth=0, reflow=1):
|
|
|
|
self.emit(s, depth, reflow)
|
|
|
|
for argtype, argname, opt in args:
|
|
|
|
emit("p->%s = %s;" % (argname, argname), 1)
|
|
|
|
assert not attrs
|
|
|
|
|
|
|
|
class PickleVisitor(EmitVisitor):
|
|
|
|
|
|
|
|
def visitModule(self, mod):
|
|
|
|
for dfn in mod.dfns:
|
|
|
|
self.visit(dfn)
|
|
|
|
|
|
|
|
def visitType(self, type):
|
|
|
|
self.visit(type.value, type.name)
|
|
|
|
|
|
|
|
def visitSum(self, sum, name):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def visitProduct(self, sum, name):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def visitConstructor(self, cons, name):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def visitField(self, sum):
|
|
|
|
pass
|
|
|
|
|
|
|
|
class MarshalPrototypeVisitor(PickleVisitor):
|
|
|
|
|
|
|
|
def prototype(self, sum, name):
|
|
|
|
ctype = get_c_type(name)
|
2005-11-13 14:41:28 -04:00
|
|
|
self.emit("static int marshal_write_%s(PyObject **, int *, %s);"
|
2005-10-20 16:59:25 -03:00
|
|
|
% (name, ctype), 0)
|
|
|
|
|
|
|
|
visitProduct = visitSum = prototype
|
|
|
|
|
2006-02-26 15:42:26 -04:00
|
|
|
class PyTypesDeclareVisitor(PickleVisitor):
|
2005-10-20 16:59:25 -03:00
|
|
|
|
2006-02-26 15:42:26 -04:00
|
|
|
def visitProduct(self, prod, name):
|
2006-02-28 18:47:29 -04:00
|
|
|
self.emit("static PyTypeObject *%s_type;" % name, 0)
|
2006-02-26 15:42:26 -04:00
|
|
|
self.emit("static PyObject* ast2obj_%s(void*);" % name, 0)
|
2006-02-26 19:40:20 -04:00
|
|
|
if prod.fields:
|
2006-02-28 18:47:29 -04:00
|
|
|
self.emit("static char *%s_fields[]={" % name,0)
|
2006-02-26 19:40:20 -04:00
|
|
|
for f in prod.fields:
|
|
|
|
self.emit('"%s",' % f.name, 1)
|
|
|
|
self.emit("};", 0)
|
2006-02-28 14:30:36 -04:00
|
|
|
|
2006-02-26 15:42:26 -04:00
|
|
|
def visitSum(self, sum, name):
|
2006-02-28 18:47:29 -04:00
|
|
|
self.emit("static PyTypeObject *%s_type;" % name, 0)
|
2006-02-27 11:23:19 -04:00
|
|
|
if sum.attributes:
|
2006-02-28 18:47:29 -04:00
|
|
|
self.emit("static char *%s_attributes[] = {" % name, 0)
|
2006-02-27 11:23:19 -04:00
|
|
|
for a in sum.attributes:
|
|
|
|
self.emit('"%s",' % a.name, 1)
|
|
|
|
self.emit("};", 0)
|
2006-02-26 15:42:26 -04:00
|
|
|
ptype = "void*"
|
|
|
|
if is_simple(sum):
|
|
|
|
ptype = get_c_type(name)
|
|
|
|
tnames = []
|
|
|
|
for t in sum.types:
|
|
|
|
tnames.append(str(t.name)+"_singleton")
|
|
|
|
tnames = ", *".join(tnames)
|
|
|
|
self.emit("static PyObject *%s;" % tnames, 0)
|
|
|
|
self.emit("static PyObject* ast2obj_%s(%s);" % (name, ptype), 0)
|
|
|
|
for t in sum.types:
|
|
|
|
self.visitConstructor(t, name)
|
2006-02-28 14:30:36 -04:00
|
|
|
|
2006-02-26 15:42:26 -04:00
|
|
|
def visitConstructor(self, cons, name):
|
2006-02-28 18:47:29 -04:00
|
|
|
self.emit("static PyTypeObject *%s_type;" % cons.name, 0)
|
2006-02-26 19:40:20 -04:00
|
|
|
if cons.fields:
|
2006-02-28 18:47:29 -04:00
|
|
|
self.emit("static char *%s_fields[]={" % cons.name, 0)
|
2006-02-26 19:40:20 -04:00
|
|
|
for t in cons.fields:
|
|
|
|
self.emit('"%s",' % t.name, 1)
|
|
|
|
self.emit("};",0)
|
2006-02-26 15:42:26 -04:00
|
|
|
|
|
|
|
class PyTypesVisitor(PickleVisitor):
|
|
|
|
|
|
|
|
def visitModule(self, mod):
|
|
|
|
self.emit("""
|
|
|
|
static PyTypeObject* make_type(char *type, PyTypeObject* base, char**fields, int num_fields)
|
|
|
|
{
|
|
|
|
PyObject *fnames, *result;
|
|
|
|
int i;
|
|
|
|
if (num_fields) {
|
|
|
|
fnames = PyTuple_New(num_fields);
|
|
|
|
if (!fnames) return NULL;
|
|
|
|
} else {
|
|
|
|
fnames = Py_None;
|
|
|
|
Py_INCREF(Py_None);
|
|
|
|
}
|
|
|
|
for(i=0; i < num_fields; i++) {
|
|
|
|
PyObject *field = PyString_FromString(fields[i]);
|
|
|
|
if (!field) {
|
|
|
|
Py_DECREF(fnames);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
PyTuple_SET_ITEM(fnames, i, field);
|
|
|
|
}
|
2006-02-28 14:30:36 -04:00
|
|
|
result = PyObject_CallFunction((PyObject*)&PyType_Type, "s(O){sOss}",
|
2006-02-27 11:23:19 -04:00
|
|
|
type, base, "_fields", fnames, "__module__", "_ast");
|
2006-02-26 15:42:26 -04:00
|
|
|
Py_DECREF(fnames);
|
|
|
|
return (PyTypeObject*)result;
|
|
|
|
}
|
|
|
|
|
2006-02-27 11:23:19 -04:00
|
|
|
static int add_attributes(PyTypeObject* type, char**attrs, int num_fields)
|
|
|
|
{
|
2006-04-21 07:40:58 -03:00
|
|
|
int i, result;
|
2006-02-27 11:23:19 -04:00
|
|
|
PyObject *s, *l = PyList_New(num_fields);
|
|
|
|
if (!l) return 0;
|
2006-04-21 07:40:58 -03:00
|
|
|
for(i = 0; i < num_fields; i++) {
|
2006-02-27 11:23:19 -04:00
|
|
|
s = PyString_FromString(attrs[i]);
|
|
|
|
if (!s) {
|
|
|
|
Py_DECREF(l);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
PyList_SET_ITEM(l, i, s);
|
|
|
|
}
|
2006-04-21 07:40:58 -03:00
|
|
|
result = PyObject_SetAttrString((PyObject*)type, "_attributes", l) >= 0;
|
|
|
|
Py_DECREF(l);
|
|
|
|
return result;
|
2006-02-27 11:23:19 -04:00
|
|
|
}
|
|
|
|
|
2006-02-26 15:42:26 -04:00
|
|
|
static PyObject* ast2obj_list(asdl_seq *seq, PyObject* (*func)(void*))
|
|
|
|
{
|
|
|
|
int i, n = asdl_seq_LEN(seq);
|
|
|
|
PyObject *result = PyList_New(n);
|
|
|
|
PyObject *value;
|
|
|
|
if (!result)
|
|
|
|
return NULL;
|
|
|
|
for (i = 0; i < n; i++) {
|
|
|
|
value = func(asdl_seq_GET(seq, i));
|
|
|
|
if (!value) {
|
|
|
|
Py_DECREF(result);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
PyList_SET_ITEM(result, i, value);
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
static PyObject* ast2obj_object(void *o)
|
|
|
|
{
|
|
|
|
if (!o)
|
|
|
|
o = Py_None;
|
|
|
|
Py_INCREF((PyObject*)o);
|
|
|
|
return (PyObject*)o;
|
|
|
|
}
|
|
|
|
#define ast2obj_identifier ast2obj_object
|
|
|
|
#define ast2obj_string ast2obj_object
|
2006-02-27 11:23:19 -04:00
|
|
|
|
2007-02-26 14:20:15 -04:00
|
|
|
static PyObject* ast2obj_int(long b)
|
2006-02-27 11:23:19 -04:00
|
|
|
{
|
|
|
|
return PyInt_FromLong(b);
|
|
|
|
}
|
2006-02-26 15:42:26 -04:00
|
|
|
""", 0, reflow=False)
|
|
|
|
|
|
|
|
self.emit("static int init_types(void)",0)
|
|
|
|
self.emit("{", 0)
|
2006-04-21 07:40:58 -03:00
|
|
|
self.emit("static int initialized;", 1)
|
2006-02-26 15:42:26 -04:00
|
|
|
self.emit("if (initialized) return 1;", 1)
|
2006-02-27 11:23:19 -04:00
|
|
|
self.emit('AST_type = make_type("AST", &PyBaseObject_Type, NULL, 0);', 1)
|
2006-02-26 15:42:26 -04:00
|
|
|
for dfn in mod.dfns:
|
|
|
|
self.visit(dfn)
|
2006-02-27 11:23:19 -04:00
|
|
|
self.emit("initialized = 1;", 1)
|
|
|
|
self.emit("return 1;", 1);
|
2006-02-26 15:42:26 -04:00
|
|
|
self.emit("}", 0)
|
|
|
|
|
|
|
|
def visitProduct(self, prod, name):
|
2006-02-26 19:40:20 -04:00
|
|
|
if prod.fields:
|
|
|
|
fields = name.value+"_fields"
|
|
|
|
else:
|
|
|
|
fields = "NULL"
|
2006-02-28 14:30:36 -04:00
|
|
|
self.emit('%s_type = make_type("%s", AST_type, %s, %d);' %
|
2006-02-26 19:40:20 -04:00
|
|
|
(name, name, fields, len(prod.fields)), 1)
|
2006-02-27 11:23:19 -04:00
|
|
|
self.emit("if (!%s_type) return 0;" % name, 1)
|
2006-02-28 14:30:36 -04:00
|
|
|
|
2006-02-26 15:42:26 -04:00
|
|
|
def visitSum(self, sum, name):
|
2006-02-27 11:23:19 -04:00
|
|
|
self.emit('%s_type = make_type("%s", AST_type, NULL, 0);' % (name, name), 1)
|
|
|
|
self.emit("if (!%s_type) return 0;" % name, 1)
|
|
|
|
if sum.attributes:
|
2006-02-28 14:30:36 -04:00
|
|
|
self.emit("if (!add_attributes(%s_type, %s_attributes, %d)) return 0;" %
|
2006-02-27 11:23:19 -04:00
|
|
|
(name, name, len(sum.attributes)), 1)
|
|
|
|
else:
|
|
|
|
self.emit("if (!add_attributes(%s_type, NULL, 0)) return 0;" % name, 1)
|
2006-02-26 15:42:26 -04:00
|
|
|
simple = is_simple(sum)
|
|
|
|
for t in sum.types:
|
|
|
|
self.visitConstructor(t, name, simple)
|
2006-02-28 14:30:36 -04:00
|
|
|
|
2006-02-26 15:42:26 -04:00
|
|
|
def visitConstructor(self, cons, name, simple):
|
2006-02-26 19:40:20 -04:00
|
|
|
if cons.fields:
|
|
|
|
fields = cons.name.value+"_fields"
|
|
|
|
else:
|
|
|
|
fields = "NULL"
|
2006-02-28 14:30:36 -04:00
|
|
|
self.emit('%s_type = make_type("%s", %s_type, %s, %d);' %
|
2006-02-26 19:40:20 -04:00
|
|
|
(cons.name, cons.name, name, fields, len(cons.fields)), 1)
|
2006-02-27 11:23:19 -04:00
|
|
|
self.emit("if (!%s_type) return 0;" % cons.name, 1)
|
2006-02-26 15:42:26 -04:00
|
|
|
if simple:
|
|
|
|
self.emit("%s_singleton = PyType_GenericNew(%s_type, NULL, NULL);" %
|
|
|
|
(cons.name, cons.name), 1)
|
2006-02-27 11:23:19 -04:00
|
|
|
self.emit("if (!%s_singleton) return 0;" % cons.name, 1)
|
2006-02-28 14:30:36 -04:00
|
|
|
|
Merged revisions 53623-53858 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r53624 | peter.astrand | 2007-02-02 20:06:36 +0100 (Fri, 02 Feb 2007) | 1 line
We had several if statements checking the value of a fd. This is unsafe, since valid fds might be zero. We should check for not None instead.
........
r53635 | kurt.kaiser | 2007-02-05 07:03:18 +0100 (Mon, 05 Feb 2007) | 2 lines
Add 'raw' support to configHandler. Patch 1650174 Tal Einat.
........
r53641 | kurt.kaiser | 2007-02-06 00:02:16 +0100 (Tue, 06 Feb 2007) | 5 lines
1. Calltips now 'handle' tuples in the argument list (display '<tuple>' :)
Suggested solution by Christos Georgiou, Bug 791968.
2. Clean up tests, were not failing when they should have been.
4. Remove some camelcase and an unneeded try/except block.
........
r53644 | kurt.kaiser | 2007-02-06 04:21:40 +0100 (Tue, 06 Feb 2007) | 2 lines
Clean up ModifiedInterpreter.runcode() structure
........
r53646 | peter.astrand | 2007-02-06 16:37:50 +0100 (Tue, 06 Feb 2007) | 1 line
Applied patch 1124861.3.patch to solve bug #1124861: Automatically create pipes on Windows, if GetStdHandle fails. Will backport.
........
r53648 | lars.gustaebel | 2007-02-06 19:38:13 +0100 (Tue, 06 Feb 2007) | 4 lines
Patch #1652681: create nonexistent files in append mode and
allow appending to empty files.
........
r53649 | kurt.kaiser | 2007-02-06 20:09:43 +0100 (Tue, 06 Feb 2007) | 4 lines
Updated patch (CodeContext.061217.patch) to
[ 1362975 ] CodeContext - Improved text indentation
Tal Einat 16Dec06
........
r53650 | kurt.kaiser | 2007-02-06 20:21:19 +0100 (Tue, 06 Feb 2007) | 2 lines
narrow exception per [ 1540849 ] except too broad
........
r53653 | kurt.kaiser | 2007-02-07 04:39:41 +0100 (Wed, 07 Feb 2007) | 4 lines
[ 1621265 ] Auto-completion list placement
Move AC window below input line unless not enough space, then put it above.
Patch: Tal Einat
........
r53654 | kurt.kaiser | 2007-02-07 09:07:13 +0100 (Wed, 07 Feb 2007) | 2 lines
Handle AttributeError during calltip lookup
........
r53656 | raymond.hettinger | 2007-02-07 21:08:22 +0100 (Wed, 07 Feb 2007) | 3 lines
SF #1615701: make d.update(m) honor __getitem__() and keys() in dict subclasses
........
r53658 | raymond.hettinger | 2007-02-07 22:04:20 +0100 (Wed, 07 Feb 2007) | 1 line
SF: 1397711 Set docs conflated immutable and hashable
........
r53660 | raymond.hettinger | 2007-02-07 22:42:17 +0100 (Wed, 07 Feb 2007) | 1 line
Check for a common user error with defaultdict().
........
r53662 | raymond.hettinger | 2007-02-07 23:24:07 +0100 (Wed, 07 Feb 2007) | 1 line
Bug #1575169: operator.isSequenceType() now returns False for subclasses of dict.
........
r53664 | raymond.hettinger | 2007-02-08 00:49:03 +0100 (Thu, 08 Feb 2007) | 1 line
Silence compiler warning
........
r53666 | raymond.hettinger | 2007-02-08 01:07:32 +0100 (Thu, 08 Feb 2007) | 1 line
Do not let overflows in enumerate() and count() pass silently.
........
r53668 | raymond.hettinger | 2007-02-08 01:50:39 +0100 (Thu, 08 Feb 2007) | 1 line
Bypass set specific optimizations for set and frozenset subclasses.
........
r53670 | raymond.hettinger | 2007-02-08 02:42:35 +0100 (Thu, 08 Feb 2007) | 1 line
Fix docstring bug
........
r53671 | martin.v.loewis | 2007-02-08 10:13:36 +0100 (Thu, 08 Feb 2007) | 3 lines
Bug #1653736: Complain about keyword arguments to time.isoformat.
Will backport to 2.5.
........
r53679 | kurt.kaiser | 2007-02-08 23:58:18 +0100 (Thu, 08 Feb 2007) | 6 lines
Corrected some bugs in AutoComplete. Also, Page Up/Down in ACW implemented;
mouse and cursor selection in ACWindow implemented; double Tab inserts current
selection and closes ACW (similar to double-click and Return); scroll wheel now
works in ACW. Added AutoComplete instructions to IDLE Help.
........
r53689 | martin.v.loewis | 2007-02-09 13:19:32 +0100 (Fri, 09 Feb 2007) | 3 lines
Bug #1653736: Properly discard third argument to slot_nb_inplace_power.
Will backport.
........
r53691 | martin.v.loewis | 2007-02-09 13:36:48 +0100 (Fri, 09 Feb 2007) | 4 lines
Bug #1600860: Search for shared python library in LIBDIR, not
lib/python/config, on "linux" and "gnu" systems.
Will backport.
........
r53693 | martin.v.loewis | 2007-02-09 13:58:49 +0100 (Fri, 09 Feb 2007) | 2 lines
Update broken link. Will backport to 2.5.
........
r53697 | georg.brandl | 2007-02-09 19:48:41 +0100 (Fri, 09 Feb 2007) | 2 lines
Bug #1656078: typo in in profile docs.
........
r53731 | brett.cannon | 2007-02-11 06:36:00 +0100 (Sun, 11 Feb 2007) | 3 lines
Change a very minor inconsistency (that is purely cosmetic) in the AST
definition.
........
r53735 | skip.montanaro | 2007-02-11 19:24:37 +0100 (Sun, 11 Feb 2007) | 1 line
fix trace.py --ignore-dir
........
r53741 | brett.cannon | 2007-02-11 20:44:41 +0100 (Sun, 11 Feb 2007) | 3 lines
Check in changed Python-ast.c from a cosmetic change to Python.asdl (in
r53731).
........
r53751 | brett.cannon | 2007-02-12 04:51:02 +0100 (Mon, 12 Feb 2007) | 5 lines
Modify Parser/asdl_c.py so that the __version__ number for Python/Python-ast.c
is specified at the top of the file. Also add a note that Python/Python-ast.c
needs to be committed separately after a change to the AST grammar to capture
the revision number of the change (which is what __version__ is set to).
........
r53752 | lars.gustaebel | 2007-02-12 10:25:53 +0100 (Mon, 12 Feb 2007) | 3 lines
Bug #1656581: Point out that external file objects are supposed to be
at position 0.
........
r53754 | martin.v.loewis | 2007-02-12 13:21:10 +0100 (Mon, 12 Feb 2007) | 3 lines
Patch 1463026: Support default namespace in XMLGenerator.
Fixes #847665. Will backport.
........
r53757 | armin.rigo | 2007-02-12 17:23:24 +0100 (Mon, 12 Feb 2007) | 4 lines
Fix the line to what is my guess at the original author's meaning.
(The line has no effect anyway, but is present because it's
customary call the base class __init__).
........
r53763 | martin.v.loewis | 2007-02-13 09:34:45 +0100 (Tue, 13 Feb 2007) | 3 lines
Patch #685268: Consider a package's __path__ in imputil.
Will backport.
........
r53765 | martin.v.loewis | 2007-02-13 10:49:38 +0100 (Tue, 13 Feb 2007) | 2 lines
Patch #698833: Support file decryption in zipfile.
........
r53766 | martin.v.loewis | 2007-02-13 11:10:39 +0100 (Tue, 13 Feb 2007) | 3 lines
Patch #1517891: Make 'a' create the file if it doesn't exist.
Fixes #1514451.
........
r53767 | martin.v.loewis | 2007-02-13 13:08:24 +0100 (Tue, 13 Feb 2007) | 3 lines
Bug #1658794: Remove extraneous 'this'.
Will backport to 2.5.
........
r53769 | martin.v.loewis | 2007-02-13 13:14:19 +0100 (Tue, 13 Feb 2007) | 3 lines
Patch #1657276: Make NETLINK_DNRTMSG conditional.
Will backport.
........
r53771 | lars.gustaebel | 2007-02-13 17:09:24 +0100 (Tue, 13 Feb 2007) | 4 lines
Patch #1647484: Renamed GzipFile's filename attribute to name. The
filename attribute is still accessible as a property that emits a
DeprecationWarning.
........
r53772 | lars.gustaebel | 2007-02-13 17:24:00 +0100 (Tue, 13 Feb 2007) | 3 lines
Strip the '.gz' extension from the filename that is written to the
gzip header.
........
r53774 | martin.v.loewis | 2007-02-14 11:07:37 +0100 (Wed, 14 Feb 2007) | 2 lines
Patch #1432399: Add HCI sockets.
........
r53775 | martin.v.loewis | 2007-02-14 12:30:07 +0100 (Wed, 14 Feb 2007) | 2 lines
Update 1432399 to removal of _BT_SOCKADDR_MEMB.
........
r53776 | martin.v.loewis | 2007-02-14 12:30:56 +0100 (Wed, 14 Feb 2007) | 3 lines
Ignore directory time stamps when considering
whether to rerun libffi configure.
........
r53778 | lars.gustaebel | 2007-02-14 15:45:12 +0100 (Wed, 14 Feb 2007) | 4 lines
A missing binary mode in AppendTest caused failures in Windows
Buildbot.
........
r53782 | martin.v.loewis | 2007-02-15 10:51:35 +0100 (Thu, 15 Feb 2007) | 2 lines
Patch #1397848: add the reasoning behind no-resize-on-shrinkage.
........
r53783 | georg.brandl | 2007-02-15 11:37:59 +0100 (Thu, 15 Feb 2007) | 2 lines
Make functools.wraps() docs a bit clearer.
........
r53785 | georg.brandl | 2007-02-15 12:29:04 +0100 (Thu, 15 Feb 2007) | 2 lines
Patch #1494140: Add documentation for the new struct.Struct object.
........
r53787 | georg.brandl | 2007-02-15 12:29:55 +0100 (Thu, 15 Feb 2007) | 2 lines
Add missing \versionadded.
........
r53800 | brett.cannon | 2007-02-15 23:54:39 +0100 (Thu, 15 Feb 2007) | 11 lines
Update the encoding package's search function to use absolute imports when
calling __import__. This helps make the expected search locations for encoding
modules be more explicit.
One could use an explicit value for __path__ when making the call to __import__
to force the exact location searched for encodings. This would give the most
strict search path possible if one is worried about malicious code being
imported. The unfortunate side-effect of that is that if __path__ was modified
on 'encodings' on purpose in a safe way it would not be picked up in future
__import__ calls.
........
r53801 | brett.cannon | 2007-02-16 20:33:01 +0100 (Fri, 16 Feb 2007) | 2 lines
Make the __import__ call in encodings.__init__ absolute with a level 0 call.
........
r53809 | vinay.sajip | 2007-02-16 23:36:24 +0100 (Fri, 16 Feb 2007) | 1 line
Minor fix for currentframe (SF #1652788).
........
r53818 | raymond.hettinger | 2007-02-19 03:03:19 +0100 (Mon, 19 Feb 2007) | 3 lines
Extend work on revision 52962: Eliminate redundant calls to PyObject_Hash().
........
r53820 | raymond.hettinger | 2007-02-19 05:08:43 +0100 (Mon, 19 Feb 2007) | 1 line
Add merge() function to heapq.
........
r53821 | raymond.hettinger | 2007-02-19 06:28:28 +0100 (Mon, 19 Feb 2007) | 1 line
Add tie-breaker count to preserve sort stability.
........
r53822 | raymond.hettinger | 2007-02-19 07:59:32 +0100 (Mon, 19 Feb 2007) | 1 line
Use C heapreplace() instead of slower _siftup() in pure python.
........
r53823 | raymond.hettinger | 2007-02-19 08:30:21 +0100 (Mon, 19 Feb 2007) | 1 line
Add test for merge stability
........
r53824 | raymond.hettinger | 2007-02-19 10:14:10 +0100 (Mon, 19 Feb 2007) | 1 line
Provide an example of defaultdict with non-zero constant factory function.
........
r53825 | lars.gustaebel | 2007-02-19 10:54:47 +0100 (Mon, 19 Feb 2007) | 2 lines
Moved misplaced news item.
........
r53826 | martin.v.loewis | 2007-02-19 11:55:19 +0100 (Mon, 19 Feb 2007) | 3 lines
Patch #1490190: posixmodule now includes os.chflags() and os.lchflags()
functions on platforms where the underlying system calls are available.
........
r53827 | raymond.hettinger | 2007-02-19 19:15:04 +0100 (Mon, 19 Feb 2007) | 1 line
Fixup docstrings for merge().
........
r53829 | raymond.hettinger | 2007-02-19 21:44:04 +0100 (Mon, 19 Feb 2007) | 1 line
Fixup set/dict interoperability.
........
r53837 | raymond.hettinger | 2007-02-21 06:20:38 +0100 (Wed, 21 Feb 2007) | 1 line
Add itertools.izip_longest().
........
r53838 | raymond.hettinger | 2007-02-21 18:22:05 +0100 (Wed, 21 Feb 2007) | 1 line
Remove filler struct item and fix leak.
........
2007-02-23 11:07:44 -04:00
|
|
|
def parse_version(mod):
|
|
|
|
return mod.version.value[12:-3]
|
|
|
|
|
2006-02-27 11:23:19 -04:00
|
|
|
class ASTModuleVisitor(PickleVisitor):
|
|
|
|
|
|
|
|
def visitModule(self, mod):
|
|
|
|
self.emit("PyMODINIT_FUNC", 0)
|
|
|
|
self.emit("init_ast(void)", 0)
|
|
|
|
self.emit("{", 0)
|
|
|
|
self.emit("PyObject *m, *d;", 1)
|
|
|
|
self.emit("if (!init_types()) return;", 1)
|
|
|
|
self.emit('m = Py_InitModule3("_ast", NULL, NULL);', 1)
|
|
|
|
self.emit("if (!m) return;", 1)
|
|
|
|
self.emit("d = PyModule_GetDict(m);", 1)
|
|
|
|
self.emit('if (PyDict_SetItemString(d, "AST", (PyObject*)AST_type) < 0) return;', 1)
|
|
|
|
self.emit('if (PyModule_AddIntConstant(m, "PyCF_ONLY_AST", PyCF_ONLY_AST) < 0)', 1)
|
|
|
|
self.emit("return;", 2)
|
2006-02-27 20:30:54 -04:00
|
|
|
# Value of version: "$Revision$"
|
Merged revisions 53623-53858 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r53624 | peter.astrand | 2007-02-02 20:06:36 +0100 (Fri, 02 Feb 2007) | 1 line
We had several if statements checking the value of a fd. This is unsafe, since valid fds might be zero. We should check for not None instead.
........
r53635 | kurt.kaiser | 2007-02-05 07:03:18 +0100 (Mon, 05 Feb 2007) | 2 lines
Add 'raw' support to configHandler. Patch 1650174 Tal Einat.
........
r53641 | kurt.kaiser | 2007-02-06 00:02:16 +0100 (Tue, 06 Feb 2007) | 5 lines
1. Calltips now 'handle' tuples in the argument list (display '<tuple>' :)
Suggested solution by Christos Georgiou, Bug 791968.
2. Clean up tests, were not failing when they should have been.
4. Remove some camelcase and an unneeded try/except block.
........
r53644 | kurt.kaiser | 2007-02-06 04:21:40 +0100 (Tue, 06 Feb 2007) | 2 lines
Clean up ModifiedInterpreter.runcode() structure
........
r53646 | peter.astrand | 2007-02-06 16:37:50 +0100 (Tue, 06 Feb 2007) | 1 line
Applied patch 1124861.3.patch to solve bug #1124861: Automatically create pipes on Windows, if GetStdHandle fails. Will backport.
........
r53648 | lars.gustaebel | 2007-02-06 19:38:13 +0100 (Tue, 06 Feb 2007) | 4 lines
Patch #1652681: create nonexistent files in append mode and
allow appending to empty files.
........
r53649 | kurt.kaiser | 2007-02-06 20:09:43 +0100 (Tue, 06 Feb 2007) | 4 lines
Updated patch (CodeContext.061217.patch) to
[ 1362975 ] CodeContext - Improved text indentation
Tal Einat 16Dec06
........
r53650 | kurt.kaiser | 2007-02-06 20:21:19 +0100 (Tue, 06 Feb 2007) | 2 lines
narrow exception per [ 1540849 ] except too broad
........
r53653 | kurt.kaiser | 2007-02-07 04:39:41 +0100 (Wed, 07 Feb 2007) | 4 lines
[ 1621265 ] Auto-completion list placement
Move AC window below input line unless not enough space, then put it above.
Patch: Tal Einat
........
r53654 | kurt.kaiser | 2007-02-07 09:07:13 +0100 (Wed, 07 Feb 2007) | 2 lines
Handle AttributeError during calltip lookup
........
r53656 | raymond.hettinger | 2007-02-07 21:08:22 +0100 (Wed, 07 Feb 2007) | 3 lines
SF #1615701: make d.update(m) honor __getitem__() and keys() in dict subclasses
........
r53658 | raymond.hettinger | 2007-02-07 22:04:20 +0100 (Wed, 07 Feb 2007) | 1 line
SF: 1397711 Set docs conflated immutable and hashable
........
r53660 | raymond.hettinger | 2007-02-07 22:42:17 +0100 (Wed, 07 Feb 2007) | 1 line
Check for a common user error with defaultdict().
........
r53662 | raymond.hettinger | 2007-02-07 23:24:07 +0100 (Wed, 07 Feb 2007) | 1 line
Bug #1575169: operator.isSequenceType() now returns False for subclasses of dict.
........
r53664 | raymond.hettinger | 2007-02-08 00:49:03 +0100 (Thu, 08 Feb 2007) | 1 line
Silence compiler warning
........
r53666 | raymond.hettinger | 2007-02-08 01:07:32 +0100 (Thu, 08 Feb 2007) | 1 line
Do not let overflows in enumerate() and count() pass silently.
........
r53668 | raymond.hettinger | 2007-02-08 01:50:39 +0100 (Thu, 08 Feb 2007) | 1 line
Bypass set specific optimizations for set and frozenset subclasses.
........
r53670 | raymond.hettinger | 2007-02-08 02:42:35 +0100 (Thu, 08 Feb 2007) | 1 line
Fix docstring bug
........
r53671 | martin.v.loewis | 2007-02-08 10:13:36 +0100 (Thu, 08 Feb 2007) | 3 lines
Bug #1653736: Complain about keyword arguments to time.isoformat.
Will backport to 2.5.
........
r53679 | kurt.kaiser | 2007-02-08 23:58:18 +0100 (Thu, 08 Feb 2007) | 6 lines
Corrected some bugs in AutoComplete. Also, Page Up/Down in ACW implemented;
mouse and cursor selection in ACWindow implemented; double Tab inserts current
selection and closes ACW (similar to double-click and Return); scroll wheel now
works in ACW. Added AutoComplete instructions to IDLE Help.
........
r53689 | martin.v.loewis | 2007-02-09 13:19:32 +0100 (Fri, 09 Feb 2007) | 3 lines
Bug #1653736: Properly discard third argument to slot_nb_inplace_power.
Will backport.
........
r53691 | martin.v.loewis | 2007-02-09 13:36:48 +0100 (Fri, 09 Feb 2007) | 4 lines
Bug #1600860: Search for shared python library in LIBDIR, not
lib/python/config, on "linux" and "gnu" systems.
Will backport.
........
r53693 | martin.v.loewis | 2007-02-09 13:58:49 +0100 (Fri, 09 Feb 2007) | 2 lines
Update broken link. Will backport to 2.5.
........
r53697 | georg.brandl | 2007-02-09 19:48:41 +0100 (Fri, 09 Feb 2007) | 2 lines
Bug #1656078: typo in in profile docs.
........
r53731 | brett.cannon | 2007-02-11 06:36:00 +0100 (Sun, 11 Feb 2007) | 3 lines
Change a very minor inconsistency (that is purely cosmetic) in the AST
definition.
........
r53735 | skip.montanaro | 2007-02-11 19:24:37 +0100 (Sun, 11 Feb 2007) | 1 line
fix trace.py --ignore-dir
........
r53741 | brett.cannon | 2007-02-11 20:44:41 +0100 (Sun, 11 Feb 2007) | 3 lines
Check in changed Python-ast.c from a cosmetic change to Python.asdl (in
r53731).
........
r53751 | brett.cannon | 2007-02-12 04:51:02 +0100 (Mon, 12 Feb 2007) | 5 lines
Modify Parser/asdl_c.py so that the __version__ number for Python/Python-ast.c
is specified at the top of the file. Also add a note that Python/Python-ast.c
needs to be committed separately after a change to the AST grammar to capture
the revision number of the change (which is what __version__ is set to).
........
r53752 | lars.gustaebel | 2007-02-12 10:25:53 +0100 (Mon, 12 Feb 2007) | 3 lines
Bug #1656581: Point out that external file objects are supposed to be
at position 0.
........
r53754 | martin.v.loewis | 2007-02-12 13:21:10 +0100 (Mon, 12 Feb 2007) | 3 lines
Patch 1463026: Support default namespace in XMLGenerator.
Fixes #847665. Will backport.
........
r53757 | armin.rigo | 2007-02-12 17:23:24 +0100 (Mon, 12 Feb 2007) | 4 lines
Fix the line to what is my guess at the original author's meaning.
(The line has no effect anyway, but is present because it's
customary call the base class __init__).
........
r53763 | martin.v.loewis | 2007-02-13 09:34:45 +0100 (Tue, 13 Feb 2007) | 3 lines
Patch #685268: Consider a package's __path__ in imputil.
Will backport.
........
r53765 | martin.v.loewis | 2007-02-13 10:49:38 +0100 (Tue, 13 Feb 2007) | 2 lines
Patch #698833: Support file decryption in zipfile.
........
r53766 | martin.v.loewis | 2007-02-13 11:10:39 +0100 (Tue, 13 Feb 2007) | 3 lines
Patch #1517891: Make 'a' create the file if it doesn't exist.
Fixes #1514451.
........
r53767 | martin.v.loewis | 2007-02-13 13:08:24 +0100 (Tue, 13 Feb 2007) | 3 lines
Bug #1658794: Remove extraneous 'this'.
Will backport to 2.5.
........
r53769 | martin.v.loewis | 2007-02-13 13:14:19 +0100 (Tue, 13 Feb 2007) | 3 lines
Patch #1657276: Make NETLINK_DNRTMSG conditional.
Will backport.
........
r53771 | lars.gustaebel | 2007-02-13 17:09:24 +0100 (Tue, 13 Feb 2007) | 4 lines
Patch #1647484: Renamed GzipFile's filename attribute to name. The
filename attribute is still accessible as a property that emits a
DeprecationWarning.
........
r53772 | lars.gustaebel | 2007-02-13 17:24:00 +0100 (Tue, 13 Feb 2007) | 3 lines
Strip the '.gz' extension from the filename that is written to the
gzip header.
........
r53774 | martin.v.loewis | 2007-02-14 11:07:37 +0100 (Wed, 14 Feb 2007) | 2 lines
Patch #1432399: Add HCI sockets.
........
r53775 | martin.v.loewis | 2007-02-14 12:30:07 +0100 (Wed, 14 Feb 2007) | 2 lines
Update 1432399 to removal of _BT_SOCKADDR_MEMB.
........
r53776 | martin.v.loewis | 2007-02-14 12:30:56 +0100 (Wed, 14 Feb 2007) | 3 lines
Ignore directory time stamps when considering
whether to rerun libffi configure.
........
r53778 | lars.gustaebel | 2007-02-14 15:45:12 +0100 (Wed, 14 Feb 2007) | 4 lines
A missing binary mode in AppendTest caused failures in Windows
Buildbot.
........
r53782 | martin.v.loewis | 2007-02-15 10:51:35 +0100 (Thu, 15 Feb 2007) | 2 lines
Patch #1397848: add the reasoning behind no-resize-on-shrinkage.
........
r53783 | georg.brandl | 2007-02-15 11:37:59 +0100 (Thu, 15 Feb 2007) | 2 lines
Make functools.wraps() docs a bit clearer.
........
r53785 | georg.brandl | 2007-02-15 12:29:04 +0100 (Thu, 15 Feb 2007) | 2 lines
Patch #1494140: Add documentation for the new struct.Struct object.
........
r53787 | georg.brandl | 2007-02-15 12:29:55 +0100 (Thu, 15 Feb 2007) | 2 lines
Add missing \versionadded.
........
r53800 | brett.cannon | 2007-02-15 23:54:39 +0100 (Thu, 15 Feb 2007) | 11 lines
Update the encoding package's search function to use absolute imports when
calling __import__. This helps make the expected search locations for encoding
modules be more explicit.
One could use an explicit value for __path__ when making the call to __import__
to force the exact location searched for encodings. This would give the most
strict search path possible if one is worried about malicious code being
imported. The unfortunate side-effect of that is that if __path__ was modified
on 'encodings' on purpose in a safe way it would not be picked up in future
__import__ calls.
........
r53801 | brett.cannon | 2007-02-16 20:33:01 +0100 (Fri, 16 Feb 2007) | 2 lines
Make the __import__ call in encodings.__init__ absolute with a level 0 call.
........
r53809 | vinay.sajip | 2007-02-16 23:36:24 +0100 (Fri, 16 Feb 2007) | 1 line
Minor fix for currentframe (SF #1652788).
........
r53818 | raymond.hettinger | 2007-02-19 03:03:19 +0100 (Mon, 19 Feb 2007) | 3 lines
Extend work on revision 52962: Eliminate redundant calls to PyObject_Hash().
........
r53820 | raymond.hettinger | 2007-02-19 05:08:43 +0100 (Mon, 19 Feb 2007) | 1 line
Add merge() function to heapq.
........
r53821 | raymond.hettinger | 2007-02-19 06:28:28 +0100 (Mon, 19 Feb 2007) | 1 line
Add tie-breaker count to preserve sort stability.
........
r53822 | raymond.hettinger | 2007-02-19 07:59:32 +0100 (Mon, 19 Feb 2007) | 1 line
Use C heapreplace() instead of slower _siftup() in pure python.
........
r53823 | raymond.hettinger | 2007-02-19 08:30:21 +0100 (Mon, 19 Feb 2007) | 1 line
Add test for merge stability
........
r53824 | raymond.hettinger | 2007-02-19 10:14:10 +0100 (Mon, 19 Feb 2007) | 1 line
Provide an example of defaultdict with non-zero constant factory function.
........
r53825 | lars.gustaebel | 2007-02-19 10:54:47 +0100 (Mon, 19 Feb 2007) | 2 lines
Moved misplaced news item.
........
r53826 | martin.v.loewis | 2007-02-19 11:55:19 +0100 (Mon, 19 Feb 2007) | 3 lines
Patch #1490190: posixmodule now includes os.chflags() and os.lchflags()
functions on platforms where the underlying system calls are available.
........
r53827 | raymond.hettinger | 2007-02-19 19:15:04 +0100 (Mon, 19 Feb 2007) | 1 line
Fixup docstrings for merge().
........
r53829 | raymond.hettinger | 2007-02-19 21:44:04 +0100 (Mon, 19 Feb 2007) | 1 line
Fixup set/dict interoperability.
........
r53837 | raymond.hettinger | 2007-02-21 06:20:38 +0100 (Wed, 21 Feb 2007) | 1 line
Add itertools.izip_longest().
........
r53838 | raymond.hettinger | 2007-02-21 18:22:05 +0100 (Wed, 21 Feb 2007) | 1 line
Remove filler struct item and fix leak.
........
2007-02-23 11:07:44 -04:00
|
|
|
self.emit('if (PyModule_AddStringConstant(m, "__version__", "%s") < 0)'
|
|
|
|
% parse_version(mod), 1)
|
2006-02-27 20:37:04 -04:00
|
|
|
self.emit("return;", 2)
|
2006-02-27 11:23:19 -04:00
|
|
|
for dfn in mod.dfns:
|
|
|
|
self.visit(dfn)
|
|
|
|
self.emit("}", 0)
|
|
|
|
|
|
|
|
def visitProduct(self, prod, name):
|
|
|
|
self.addObj(name)
|
2006-02-28 14:30:36 -04:00
|
|
|
|
2006-02-27 11:23:19 -04:00
|
|
|
def visitSum(self, sum, name):
|
|
|
|
self.addObj(name)
|
|
|
|
for t in sum.types:
|
|
|
|
self.visitConstructor(t, name)
|
2006-02-28 14:30:36 -04:00
|
|
|
|
2006-02-27 11:23:19 -04:00
|
|
|
def visitConstructor(self, cons, name):
|
|
|
|
self.addObj(cons.name)
|
2006-02-28 14:30:36 -04:00
|
|
|
|
2006-02-27 11:23:19 -04:00
|
|
|
def addObj(self, name):
|
2006-04-21 07:40:58 -03:00
|
|
|
self.emit('if (PyDict_SetItemString(d, "%s", (PyObject*)%s_type) < 0) return;' % (name, name), 1)
|
2005-10-20 16:59:25 -03:00
|
|
|
|
|
|
|
_SPECIALIZED_SEQUENCES = ('stmt', 'expr')
|
|
|
|
|
|
|
|
def find_sequence(fields, doing_specialization):
|
|
|
|
"""Return True if any field uses a sequence."""
|
|
|
|
for f in fields:
|
|
|
|
if f.seq:
|
|
|
|
if not doing_specialization:
|
|
|
|
return True
|
|
|
|
if str(f.type) not in _SPECIALIZED_SEQUENCES:
|
|
|
|
return True
|
|
|
|
return False
|
|
|
|
|
|
|
|
def has_sequence(types, doing_specialization):
|
|
|
|
for t in types:
|
|
|
|
if find_sequence(t.fields, doing_specialization):
|
|
|
|
return True
|
|
|
|
return False
|
|
|
|
|
|
|
|
|
|
|
|
class StaticVisitor(PickleVisitor):
|
2005-11-13 15:14:20 -04:00
|
|
|
CODE = '''Very simple, always emit this static code. Overide CODE'''
|
|
|
|
|
|
|
|
def visit(self, object):
|
|
|
|
self.emit(self.CODE, 0, reflow=False)
|
|
|
|
|
2006-02-26 15:42:26 -04:00
|
|
|
class ObjVisitor(PickleVisitor):
|
2005-10-20 16:59:25 -03:00
|
|
|
|
2006-02-27 11:23:19 -04:00
|
|
|
def func_begin(self, name):
|
2005-10-20 16:59:25 -03:00
|
|
|
ctype = get_c_type(name)
|
2006-02-26 15:42:26 -04:00
|
|
|
self.emit("PyObject*", 0)
|
|
|
|
self.emit("ast2obj_%s(void* _o)" % (name), 0)
|
2005-10-20 16:59:25 -03:00
|
|
|
self.emit("{", 0)
|
2006-02-26 15:42:26 -04:00
|
|
|
self.emit("%s o = (%s)_o;" % (ctype, ctype), 1)
|
|
|
|
self.emit("PyObject *result = NULL, *value = NULL;", 1)
|
|
|
|
self.emit('if (!o) {', 1)
|
|
|
|
self.emit("Py_INCREF(Py_None);", 2)
|
|
|
|
self.emit('return Py_None;', 2)
|
|
|
|
self.emit("}", 1)
|
2005-10-20 16:59:25 -03:00
|
|
|
self.emit('', 0)
|
|
|
|
|
2006-02-27 11:23:19 -04:00
|
|
|
def func_end(self):
|
2006-02-26 15:42:26 -04:00
|
|
|
self.emit("return result;", 1)
|
|
|
|
self.emit("failed:", 0)
|
|
|
|
self.emit("Py_XDECREF(value);", 1)
|
|
|
|
self.emit("Py_XDECREF(result);", 1)
|
|
|
|
self.emit("return NULL;", 1)
|
2005-10-20 16:59:25 -03:00
|
|
|
self.emit("}", 0)
|
|
|
|
self.emit("", 0)
|
|
|
|
|
|
|
|
def visitSum(self, sum, name):
|
2006-02-26 15:42:26 -04:00
|
|
|
if is_simple(sum):
|
|
|
|
self.simpleSum(sum, name)
|
|
|
|
return
|
2006-02-27 11:23:19 -04:00
|
|
|
self.func_begin(name)
|
2006-02-26 15:42:26 -04:00
|
|
|
self.emit("switch (o->kind) {", 1)
|
|
|
|
for i in range(len(sum.types)):
|
|
|
|
t = sum.types[i]
|
|
|
|
self.visitConstructor(t, i + 1, name)
|
|
|
|
self.emit("}", 1)
|
2006-02-27 11:23:19 -04:00
|
|
|
for a in sum.attributes:
|
|
|
|
self.emit("value = ast2obj_%s(o->%s);" % (a.type, a.name), 1)
|
|
|
|
self.emit("if (!value) goto failed;", 1)
|
2006-03-01 20:31:27 -04:00
|
|
|
self.emit('if (PyObject_SetAttrString(result, "%s", value) < 0)' % a.name, 1)
|
|
|
|
self.emit('goto failed;', 2)
|
|
|
|
self.emit('Py_DECREF(value);', 1)
|
2006-02-27 11:23:19 -04:00
|
|
|
self.func_end()
|
2006-02-28 14:30:36 -04:00
|
|
|
|
2006-02-26 15:42:26 -04:00
|
|
|
def simpleSum(self, sum, name):
|
|
|
|
self.emit("PyObject* ast2obj_%s(%s_ty o)" % (name, name), 0)
|
|
|
|
self.emit("{", 0)
|
|
|
|
self.emit("switch(o) {", 1)
|
|
|
|
for t in sum.types:
|
|
|
|
self.emit("case %s:" % t.name, 2)
|
|
|
|
self.emit("Py_INCREF(%s_singleton);" % t.name, 3)
|
|
|
|
self.emit("return %s_singleton;" % t.name, 3)
|
|
|
|
self.emit("}", 1)
|
|
|
|
self.emit("return NULL; /* cannot happen */", 1)
|
|
|
|
self.emit("}", 0)
|
2005-10-20 16:59:25 -03:00
|
|
|
|
|
|
|
def visitProduct(self, prod, name):
|
2006-02-27 11:23:19 -04:00
|
|
|
self.func_begin(name)
|
2006-02-26 15:42:26 -04:00
|
|
|
self.emit("result = PyType_GenericNew(%s_type, NULL, NULL);" % name, 1);
|
|
|
|
self.emit("if (!result) return NULL;", 1)
|
2005-10-20 16:59:25 -03:00
|
|
|
for field in prod.fields:
|
|
|
|
self.visitField(field, name, 1, True)
|
2006-02-27 11:23:19 -04:00
|
|
|
self.func_end()
|
2005-12-25 19:18:31 -04:00
|
|
|
|
2005-10-20 16:59:25 -03:00
|
|
|
def visitConstructor(self, cons, enum, name):
|
|
|
|
self.emit("case %s_kind:" % cons.name, 1)
|
2006-02-26 15:42:26 -04:00
|
|
|
self.emit("result = PyType_GenericNew(%s_type, NULL, NULL);" % cons.name, 2);
|
|
|
|
self.emit("if (!result) goto failed;", 2)
|
2005-10-20 16:59:25 -03:00
|
|
|
for f in cons.fields:
|
|
|
|
self.visitField(f, cons.name, 2, False)
|
|
|
|
self.emit("break;", 2)
|
|
|
|
|
|
|
|
def visitField(self, field, name, depth, product):
|
|
|
|
def emit(s, d):
|
|
|
|
self.emit(s, depth + d)
|
|
|
|
if product:
|
|
|
|
value = "o->%s" % field.name
|
|
|
|
else:
|
|
|
|
value = "o->v.%s.%s" % (name, field.name)
|
2006-02-26 15:42:26 -04:00
|
|
|
self.set(field, value, depth)
|
|
|
|
emit("if (!value) goto failed;", 0)
|
|
|
|
emit('if (PyObject_SetAttrString(result, "%s", value) == -1)' % field.name, 0)
|
|
|
|
emit("goto failed;", 1)
|
|
|
|
emit("Py_DECREF(value);", 0)
|
2005-10-20 16:59:25 -03:00
|
|
|
|
|
|
|
def emitSeq(self, field, value, depth, emit):
|
2006-02-26 15:42:26 -04:00
|
|
|
emit("seq = %s;" % value, 0)
|
|
|
|
emit("n = asdl_seq_LEN(seq);", 0)
|
|
|
|
emit("value = PyList_New(n);", 0)
|
|
|
|
emit("if (!value) goto failed;", 0)
|
|
|
|
emit("for (i = 0; i < n; i++) {", 0)
|
|
|
|
self.set("value", field, "asdl_seq_GET(seq, i)", depth + 1)
|
|
|
|
emit("if (!value1) goto failed;", 1)
|
|
|
|
emit("PyList_SET_ITEM(value, i, value1);", 1)
|
|
|
|
emit("value1 = NULL;", 1)
|
|
|
|
emit("}", 0)
|
|
|
|
|
|
|
|
def set(self, field, value, depth):
|
|
|
|
if field.seq:
|
2006-02-26 16:51:25 -04:00
|
|
|
# XXX should really check for is_simple, but that requires a symbol table
|
2006-02-26 15:42:26 -04:00
|
|
|
if field.type.value == "cmpop":
|
2006-02-26 16:51:25 -04:00
|
|
|
# While the sequence elements are stored as void*,
|
|
|
|
# ast2obj_cmpop expects an enum
|
|
|
|
self.emit("{", depth)
|
|
|
|
self.emit("int i, n = asdl_seq_LEN(%s);" % value, depth+1)
|
|
|
|
self.emit("value = PyList_New(n);", depth+1)
|
|
|
|
self.emit("if (!value) goto failed;", depth+1)
|
|
|
|
self.emit("for(i = 0; i < n; i++)", depth+1)
|
|
|
|
# This cannot fail, so no need for error handling
|
2006-04-21 07:40:58 -03:00
|
|
|
self.emit("PyList_SET_ITEM(value, i, ast2obj_cmpop((cmpop_ty)asdl_seq_GET(%s, i)));" % value,
|
|
|
|
depth+2, reflow=False)
|
2006-02-26 16:51:25 -04:00
|
|
|
self.emit("}", depth)
|
2006-02-26 15:42:26 -04:00
|
|
|
else:
|
2006-02-26 16:51:25 -04:00
|
|
|
self.emit("value = ast2obj_list(%s, ast2obj_%s);" % (value, field.type), depth)
|
2005-10-20 16:59:25 -03:00
|
|
|
else:
|
|
|
|
ctype = get_c_type(field.type)
|
2006-02-26 15:42:26 -04:00
|
|
|
self.emit("value = ast2obj_%s(%s);" % (field.type, value), depth, reflow=False)
|
2005-12-25 19:18:31 -04:00
|
|
|
|
2005-10-20 16:59:25 -03:00
|
|
|
|
2006-02-26 15:42:26 -04:00
|
|
|
class PartingShots(StaticVisitor):
|
|
|
|
|
|
|
|
CODE = """
|
|
|
|
PyObject* PyAST_mod2obj(mod_ty t)
|
|
|
|
{
|
|
|
|
init_types();
|
|
|
|
return ast2obj_mod(t);
|
|
|
|
}
|
|
|
|
"""
|
2005-10-20 16:59:25 -03:00
|
|
|
|
|
|
|
class ChainOfVisitors:
|
|
|
|
def __init__(self, *visitors):
|
|
|
|
self.visitors = visitors
|
|
|
|
|
|
|
|
def visit(self, object):
|
|
|
|
for v in self.visitors:
|
|
|
|
v.visit(object)
|
2005-11-13 15:14:20 -04:00
|
|
|
v.emit("", 0)
|
2005-10-20 16:59:25 -03:00
|
|
|
|
2007-05-07 19:24:25 -03:00
|
|
|
common_msg = "/* File automatically generated by %s. */\n\n"
|
Merged revisions 53623-53858 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r53624 | peter.astrand | 2007-02-02 20:06:36 +0100 (Fri, 02 Feb 2007) | 1 line
We had several if statements checking the value of a fd. This is unsafe, since valid fds might be zero. We should check for not None instead.
........
r53635 | kurt.kaiser | 2007-02-05 07:03:18 +0100 (Mon, 05 Feb 2007) | 2 lines
Add 'raw' support to configHandler. Patch 1650174 Tal Einat.
........
r53641 | kurt.kaiser | 2007-02-06 00:02:16 +0100 (Tue, 06 Feb 2007) | 5 lines
1. Calltips now 'handle' tuples in the argument list (display '<tuple>' :)
Suggested solution by Christos Georgiou, Bug 791968.
2. Clean up tests, were not failing when they should have been.
4. Remove some camelcase and an unneeded try/except block.
........
r53644 | kurt.kaiser | 2007-02-06 04:21:40 +0100 (Tue, 06 Feb 2007) | 2 lines
Clean up ModifiedInterpreter.runcode() structure
........
r53646 | peter.astrand | 2007-02-06 16:37:50 +0100 (Tue, 06 Feb 2007) | 1 line
Applied patch 1124861.3.patch to solve bug #1124861: Automatically create pipes on Windows, if GetStdHandle fails. Will backport.
........
r53648 | lars.gustaebel | 2007-02-06 19:38:13 +0100 (Tue, 06 Feb 2007) | 4 lines
Patch #1652681: create nonexistent files in append mode and
allow appending to empty files.
........
r53649 | kurt.kaiser | 2007-02-06 20:09:43 +0100 (Tue, 06 Feb 2007) | 4 lines
Updated patch (CodeContext.061217.patch) to
[ 1362975 ] CodeContext - Improved text indentation
Tal Einat 16Dec06
........
r53650 | kurt.kaiser | 2007-02-06 20:21:19 +0100 (Tue, 06 Feb 2007) | 2 lines
narrow exception per [ 1540849 ] except too broad
........
r53653 | kurt.kaiser | 2007-02-07 04:39:41 +0100 (Wed, 07 Feb 2007) | 4 lines
[ 1621265 ] Auto-completion list placement
Move AC window below input line unless not enough space, then put it above.
Patch: Tal Einat
........
r53654 | kurt.kaiser | 2007-02-07 09:07:13 +0100 (Wed, 07 Feb 2007) | 2 lines
Handle AttributeError during calltip lookup
........
r53656 | raymond.hettinger | 2007-02-07 21:08:22 +0100 (Wed, 07 Feb 2007) | 3 lines
SF #1615701: make d.update(m) honor __getitem__() and keys() in dict subclasses
........
r53658 | raymond.hettinger | 2007-02-07 22:04:20 +0100 (Wed, 07 Feb 2007) | 1 line
SF: 1397711 Set docs conflated immutable and hashable
........
r53660 | raymond.hettinger | 2007-02-07 22:42:17 +0100 (Wed, 07 Feb 2007) | 1 line
Check for a common user error with defaultdict().
........
r53662 | raymond.hettinger | 2007-02-07 23:24:07 +0100 (Wed, 07 Feb 2007) | 1 line
Bug #1575169: operator.isSequenceType() now returns False for subclasses of dict.
........
r53664 | raymond.hettinger | 2007-02-08 00:49:03 +0100 (Thu, 08 Feb 2007) | 1 line
Silence compiler warning
........
r53666 | raymond.hettinger | 2007-02-08 01:07:32 +0100 (Thu, 08 Feb 2007) | 1 line
Do not let overflows in enumerate() and count() pass silently.
........
r53668 | raymond.hettinger | 2007-02-08 01:50:39 +0100 (Thu, 08 Feb 2007) | 1 line
Bypass set specific optimizations for set and frozenset subclasses.
........
r53670 | raymond.hettinger | 2007-02-08 02:42:35 +0100 (Thu, 08 Feb 2007) | 1 line
Fix docstring bug
........
r53671 | martin.v.loewis | 2007-02-08 10:13:36 +0100 (Thu, 08 Feb 2007) | 3 lines
Bug #1653736: Complain about keyword arguments to time.isoformat.
Will backport to 2.5.
........
r53679 | kurt.kaiser | 2007-02-08 23:58:18 +0100 (Thu, 08 Feb 2007) | 6 lines
Corrected some bugs in AutoComplete. Also, Page Up/Down in ACW implemented;
mouse and cursor selection in ACWindow implemented; double Tab inserts current
selection and closes ACW (similar to double-click and Return); scroll wheel now
works in ACW. Added AutoComplete instructions to IDLE Help.
........
r53689 | martin.v.loewis | 2007-02-09 13:19:32 +0100 (Fri, 09 Feb 2007) | 3 lines
Bug #1653736: Properly discard third argument to slot_nb_inplace_power.
Will backport.
........
r53691 | martin.v.loewis | 2007-02-09 13:36:48 +0100 (Fri, 09 Feb 2007) | 4 lines
Bug #1600860: Search for shared python library in LIBDIR, not
lib/python/config, on "linux" and "gnu" systems.
Will backport.
........
r53693 | martin.v.loewis | 2007-02-09 13:58:49 +0100 (Fri, 09 Feb 2007) | 2 lines
Update broken link. Will backport to 2.5.
........
r53697 | georg.brandl | 2007-02-09 19:48:41 +0100 (Fri, 09 Feb 2007) | 2 lines
Bug #1656078: typo in in profile docs.
........
r53731 | brett.cannon | 2007-02-11 06:36:00 +0100 (Sun, 11 Feb 2007) | 3 lines
Change a very minor inconsistency (that is purely cosmetic) in the AST
definition.
........
r53735 | skip.montanaro | 2007-02-11 19:24:37 +0100 (Sun, 11 Feb 2007) | 1 line
fix trace.py --ignore-dir
........
r53741 | brett.cannon | 2007-02-11 20:44:41 +0100 (Sun, 11 Feb 2007) | 3 lines
Check in changed Python-ast.c from a cosmetic change to Python.asdl (in
r53731).
........
r53751 | brett.cannon | 2007-02-12 04:51:02 +0100 (Mon, 12 Feb 2007) | 5 lines
Modify Parser/asdl_c.py so that the __version__ number for Python/Python-ast.c
is specified at the top of the file. Also add a note that Python/Python-ast.c
needs to be committed separately after a change to the AST grammar to capture
the revision number of the change (which is what __version__ is set to).
........
r53752 | lars.gustaebel | 2007-02-12 10:25:53 +0100 (Mon, 12 Feb 2007) | 3 lines
Bug #1656581: Point out that external file objects are supposed to be
at position 0.
........
r53754 | martin.v.loewis | 2007-02-12 13:21:10 +0100 (Mon, 12 Feb 2007) | 3 lines
Patch 1463026: Support default namespace in XMLGenerator.
Fixes #847665. Will backport.
........
r53757 | armin.rigo | 2007-02-12 17:23:24 +0100 (Mon, 12 Feb 2007) | 4 lines
Fix the line to what is my guess at the original author's meaning.
(The line has no effect anyway, but is present because it's
customary call the base class __init__).
........
r53763 | martin.v.loewis | 2007-02-13 09:34:45 +0100 (Tue, 13 Feb 2007) | 3 lines
Patch #685268: Consider a package's __path__ in imputil.
Will backport.
........
r53765 | martin.v.loewis | 2007-02-13 10:49:38 +0100 (Tue, 13 Feb 2007) | 2 lines
Patch #698833: Support file decryption in zipfile.
........
r53766 | martin.v.loewis | 2007-02-13 11:10:39 +0100 (Tue, 13 Feb 2007) | 3 lines
Patch #1517891: Make 'a' create the file if it doesn't exist.
Fixes #1514451.
........
r53767 | martin.v.loewis | 2007-02-13 13:08:24 +0100 (Tue, 13 Feb 2007) | 3 lines
Bug #1658794: Remove extraneous 'this'.
Will backport to 2.5.
........
r53769 | martin.v.loewis | 2007-02-13 13:14:19 +0100 (Tue, 13 Feb 2007) | 3 lines
Patch #1657276: Make NETLINK_DNRTMSG conditional.
Will backport.
........
r53771 | lars.gustaebel | 2007-02-13 17:09:24 +0100 (Tue, 13 Feb 2007) | 4 lines
Patch #1647484: Renamed GzipFile's filename attribute to name. The
filename attribute is still accessible as a property that emits a
DeprecationWarning.
........
r53772 | lars.gustaebel | 2007-02-13 17:24:00 +0100 (Tue, 13 Feb 2007) | 3 lines
Strip the '.gz' extension from the filename that is written to the
gzip header.
........
r53774 | martin.v.loewis | 2007-02-14 11:07:37 +0100 (Wed, 14 Feb 2007) | 2 lines
Patch #1432399: Add HCI sockets.
........
r53775 | martin.v.loewis | 2007-02-14 12:30:07 +0100 (Wed, 14 Feb 2007) | 2 lines
Update 1432399 to removal of _BT_SOCKADDR_MEMB.
........
r53776 | martin.v.loewis | 2007-02-14 12:30:56 +0100 (Wed, 14 Feb 2007) | 3 lines
Ignore directory time stamps when considering
whether to rerun libffi configure.
........
r53778 | lars.gustaebel | 2007-02-14 15:45:12 +0100 (Wed, 14 Feb 2007) | 4 lines
A missing binary mode in AppendTest caused failures in Windows
Buildbot.
........
r53782 | martin.v.loewis | 2007-02-15 10:51:35 +0100 (Thu, 15 Feb 2007) | 2 lines
Patch #1397848: add the reasoning behind no-resize-on-shrinkage.
........
r53783 | georg.brandl | 2007-02-15 11:37:59 +0100 (Thu, 15 Feb 2007) | 2 lines
Make functools.wraps() docs a bit clearer.
........
r53785 | georg.brandl | 2007-02-15 12:29:04 +0100 (Thu, 15 Feb 2007) | 2 lines
Patch #1494140: Add documentation for the new struct.Struct object.
........
r53787 | georg.brandl | 2007-02-15 12:29:55 +0100 (Thu, 15 Feb 2007) | 2 lines
Add missing \versionadded.
........
r53800 | brett.cannon | 2007-02-15 23:54:39 +0100 (Thu, 15 Feb 2007) | 11 lines
Update the encoding package's search function to use absolute imports when
calling __import__. This helps make the expected search locations for encoding
modules be more explicit.
One could use an explicit value for __path__ when making the call to __import__
to force the exact location searched for encodings. This would give the most
strict search path possible if one is worried about malicious code being
imported. The unfortunate side-effect of that is that if __path__ was modified
on 'encodings' on purpose in a safe way it would not be picked up in future
__import__ calls.
........
r53801 | brett.cannon | 2007-02-16 20:33:01 +0100 (Fri, 16 Feb 2007) | 2 lines
Make the __import__ call in encodings.__init__ absolute with a level 0 call.
........
r53809 | vinay.sajip | 2007-02-16 23:36:24 +0100 (Fri, 16 Feb 2007) | 1 line
Minor fix for currentframe (SF #1652788).
........
r53818 | raymond.hettinger | 2007-02-19 03:03:19 +0100 (Mon, 19 Feb 2007) | 3 lines
Extend work on revision 52962: Eliminate redundant calls to PyObject_Hash().
........
r53820 | raymond.hettinger | 2007-02-19 05:08:43 +0100 (Mon, 19 Feb 2007) | 1 line
Add merge() function to heapq.
........
r53821 | raymond.hettinger | 2007-02-19 06:28:28 +0100 (Mon, 19 Feb 2007) | 1 line
Add tie-breaker count to preserve sort stability.
........
r53822 | raymond.hettinger | 2007-02-19 07:59:32 +0100 (Mon, 19 Feb 2007) | 1 line
Use C heapreplace() instead of slower _siftup() in pure python.
........
r53823 | raymond.hettinger | 2007-02-19 08:30:21 +0100 (Mon, 19 Feb 2007) | 1 line
Add test for merge stability
........
r53824 | raymond.hettinger | 2007-02-19 10:14:10 +0100 (Mon, 19 Feb 2007) | 1 line
Provide an example of defaultdict with non-zero constant factory function.
........
r53825 | lars.gustaebel | 2007-02-19 10:54:47 +0100 (Mon, 19 Feb 2007) | 2 lines
Moved misplaced news item.
........
r53826 | martin.v.loewis | 2007-02-19 11:55:19 +0100 (Mon, 19 Feb 2007) | 3 lines
Patch #1490190: posixmodule now includes os.chflags() and os.lchflags()
functions on platforms where the underlying system calls are available.
........
r53827 | raymond.hettinger | 2007-02-19 19:15:04 +0100 (Mon, 19 Feb 2007) | 1 line
Fixup docstrings for merge().
........
r53829 | raymond.hettinger | 2007-02-19 21:44:04 +0100 (Mon, 19 Feb 2007) | 1 line
Fixup set/dict interoperability.
........
r53837 | raymond.hettinger | 2007-02-21 06:20:38 +0100 (Wed, 21 Feb 2007) | 1 line
Add itertools.izip_longest().
........
r53838 | raymond.hettinger | 2007-02-21 18:22:05 +0100 (Wed, 21 Feb 2007) | 1 line
Remove filler struct item and fix leak.
........
2007-02-23 11:07:44 -04:00
|
|
|
|
|
|
|
c_file_msg = """
|
|
|
|
/*
|
|
|
|
__version__ %s.
|
|
|
|
|
|
|
|
This module must be committed separately after each AST grammar change;
|
|
|
|
The __version__ number is set to the revision number of the commit
|
|
|
|
containing the grammar change.
|
|
|
|
*/
|
2007-05-07 19:24:25 -03:00
|
|
|
|
Merged revisions 53623-53858 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r53624 | peter.astrand | 2007-02-02 20:06:36 +0100 (Fri, 02 Feb 2007) | 1 line
We had several if statements checking the value of a fd. This is unsafe, since valid fds might be zero. We should check for not None instead.
........
r53635 | kurt.kaiser | 2007-02-05 07:03:18 +0100 (Mon, 05 Feb 2007) | 2 lines
Add 'raw' support to configHandler. Patch 1650174 Tal Einat.
........
r53641 | kurt.kaiser | 2007-02-06 00:02:16 +0100 (Tue, 06 Feb 2007) | 5 lines
1. Calltips now 'handle' tuples in the argument list (display '<tuple>' :)
Suggested solution by Christos Georgiou, Bug 791968.
2. Clean up tests, were not failing when they should have been.
4. Remove some camelcase and an unneeded try/except block.
........
r53644 | kurt.kaiser | 2007-02-06 04:21:40 +0100 (Tue, 06 Feb 2007) | 2 lines
Clean up ModifiedInterpreter.runcode() structure
........
r53646 | peter.astrand | 2007-02-06 16:37:50 +0100 (Tue, 06 Feb 2007) | 1 line
Applied patch 1124861.3.patch to solve bug #1124861: Automatically create pipes on Windows, if GetStdHandle fails. Will backport.
........
r53648 | lars.gustaebel | 2007-02-06 19:38:13 +0100 (Tue, 06 Feb 2007) | 4 lines
Patch #1652681: create nonexistent files in append mode and
allow appending to empty files.
........
r53649 | kurt.kaiser | 2007-02-06 20:09:43 +0100 (Tue, 06 Feb 2007) | 4 lines
Updated patch (CodeContext.061217.patch) to
[ 1362975 ] CodeContext - Improved text indentation
Tal Einat 16Dec06
........
r53650 | kurt.kaiser | 2007-02-06 20:21:19 +0100 (Tue, 06 Feb 2007) | 2 lines
narrow exception per [ 1540849 ] except too broad
........
r53653 | kurt.kaiser | 2007-02-07 04:39:41 +0100 (Wed, 07 Feb 2007) | 4 lines
[ 1621265 ] Auto-completion list placement
Move AC window below input line unless not enough space, then put it above.
Patch: Tal Einat
........
r53654 | kurt.kaiser | 2007-02-07 09:07:13 +0100 (Wed, 07 Feb 2007) | 2 lines
Handle AttributeError during calltip lookup
........
r53656 | raymond.hettinger | 2007-02-07 21:08:22 +0100 (Wed, 07 Feb 2007) | 3 lines
SF #1615701: make d.update(m) honor __getitem__() and keys() in dict subclasses
........
r53658 | raymond.hettinger | 2007-02-07 22:04:20 +0100 (Wed, 07 Feb 2007) | 1 line
SF: 1397711 Set docs conflated immutable and hashable
........
r53660 | raymond.hettinger | 2007-02-07 22:42:17 +0100 (Wed, 07 Feb 2007) | 1 line
Check for a common user error with defaultdict().
........
r53662 | raymond.hettinger | 2007-02-07 23:24:07 +0100 (Wed, 07 Feb 2007) | 1 line
Bug #1575169: operator.isSequenceType() now returns False for subclasses of dict.
........
r53664 | raymond.hettinger | 2007-02-08 00:49:03 +0100 (Thu, 08 Feb 2007) | 1 line
Silence compiler warning
........
r53666 | raymond.hettinger | 2007-02-08 01:07:32 +0100 (Thu, 08 Feb 2007) | 1 line
Do not let overflows in enumerate() and count() pass silently.
........
r53668 | raymond.hettinger | 2007-02-08 01:50:39 +0100 (Thu, 08 Feb 2007) | 1 line
Bypass set specific optimizations for set and frozenset subclasses.
........
r53670 | raymond.hettinger | 2007-02-08 02:42:35 +0100 (Thu, 08 Feb 2007) | 1 line
Fix docstring bug
........
r53671 | martin.v.loewis | 2007-02-08 10:13:36 +0100 (Thu, 08 Feb 2007) | 3 lines
Bug #1653736: Complain about keyword arguments to time.isoformat.
Will backport to 2.5.
........
r53679 | kurt.kaiser | 2007-02-08 23:58:18 +0100 (Thu, 08 Feb 2007) | 6 lines
Corrected some bugs in AutoComplete. Also, Page Up/Down in ACW implemented;
mouse and cursor selection in ACWindow implemented; double Tab inserts current
selection and closes ACW (similar to double-click and Return); scroll wheel now
works in ACW. Added AutoComplete instructions to IDLE Help.
........
r53689 | martin.v.loewis | 2007-02-09 13:19:32 +0100 (Fri, 09 Feb 2007) | 3 lines
Bug #1653736: Properly discard third argument to slot_nb_inplace_power.
Will backport.
........
r53691 | martin.v.loewis | 2007-02-09 13:36:48 +0100 (Fri, 09 Feb 2007) | 4 lines
Bug #1600860: Search for shared python library in LIBDIR, not
lib/python/config, on "linux" and "gnu" systems.
Will backport.
........
r53693 | martin.v.loewis | 2007-02-09 13:58:49 +0100 (Fri, 09 Feb 2007) | 2 lines
Update broken link. Will backport to 2.5.
........
r53697 | georg.brandl | 2007-02-09 19:48:41 +0100 (Fri, 09 Feb 2007) | 2 lines
Bug #1656078: typo in in profile docs.
........
r53731 | brett.cannon | 2007-02-11 06:36:00 +0100 (Sun, 11 Feb 2007) | 3 lines
Change a very minor inconsistency (that is purely cosmetic) in the AST
definition.
........
r53735 | skip.montanaro | 2007-02-11 19:24:37 +0100 (Sun, 11 Feb 2007) | 1 line
fix trace.py --ignore-dir
........
r53741 | brett.cannon | 2007-02-11 20:44:41 +0100 (Sun, 11 Feb 2007) | 3 lines
Check in changed Python-ast.c from a cosmetic change to Python.asdl (in
r53731).
........
r53751 | brett.cannon | 2007-02-12 04:51:02 +0100 (Mon, 12 Feb 2007) | 5 lines
Modify Parser/asdl_c.py so that the __version__ number for Python/Python-ast.c
is specified at the top of the file. Also add a note that Python/Python-ast.c
needs to be committed separately after a change to the AST grammar to capture
the revision number of the change (which is what __version__ is set to).
........
r53752 | lars.gustaebel | 2007-02-12 10:25:53 +0100 (Mon, 12 Feb 2007) | 3 lines
Bug #1656581: Point out that external file objects are supposed to be
at position 0.
........
r53754 | martin.v.loewis | 2007-02-12 13:21:10 +0100 (Mon, 12 Feb 2007) | 3 lines
Patch 1463026: Support default namespace in XMLGenerator.
Fixes #847665. Will backport.
........
r53757 | armin.rigo | 2007-02-12 17:23:24 +0100 (Mon, 12 Feb 2007) | 4 lines
Fix the line to what is my guess at the original author's meaning.
(The line has no effect anyway, but is present because it's
customary call the base class __init__).
........
r53763 | martin.v.loewis | 2007-02-13 09:34:45 +0100 (Tue, 13 Feb 2007) | 3 lines
Patch #685268: Consider a package's __path__ in imputil.
Will backport.
........
r53765 | martin.v.loewis | 2007-02-13 10:49:38 +0100 (Tue, 13 Feb 2007) | 2 lines
Patch #698833: Support file decryption in zipfile.
........
r53766 | martin.v.loewis | 2007-02-13 11:10:39 +0100 (Tue, 13 Feb 2007) | 3 lines
Patch #1517891: Make 'a' create the file if it doesn't exist.
Fixes #1514451.
........
r53767 | martin.v.loewis | 2007-02-13 13:08:24 +0100 (Tue, 13 Feb 2007) | 3 lines
Bug #1658794: Remove extraneous 'this'.
Will backport to 2.5.
........
r53769 | martin.v.loewis | 2007-02-13 13:14:19 +0100 (Tue, 13 Feb 2007) | 3 lines
Patch #1657276: Make NETLINK_DNRTMSG conditional.
Will backport.
........
r53771 | lars.gustaebel | 2007-02-13 17:09:24 +0100 (Tue, 13 Feb 2007) | 4 lines
Patch #1647484: Renamed GzipFile's filename attribute to name. The
filename attribute is still accessible as a property that emits a
DeprecationWarning.
........
r53772 | lars.gustaebel | 2007-02-13 17:24:00 +0100 (Tue, 13 Feb 2007) | 3 lines
Strip the '.gz' extension from the filename that is written to the
gzip header.
........
r53774 | martin.v.loewis | 2007-02-14 11:07:37 +0100 (Wed, 14 Feb 2007) | 2 lines
Patch #1432399: Add HCI sockets.
........
r53775 | martin.v.loewis | 2007-02-14 12:30:07 +0100 (Wed, 14 Feb 2007) | 2 lines
Update 1432399 to removal of _BT_SOCKADDR_MEMB.
........
r53776 | martin.v.loewis | 2007-02-14 12:30:56 +0100 (Wed, 14 Feb 2007) | 3 lines
Ignore directory time stamps when considering
whether to rerun libffi configure.
........
r53778 | lars.gustaebel | 2007-02-14 15:45:12 +0100 (Wed, 14 Feb 2007) | 4 lines
A missing binary mode in AppendTest caused failures in Windows
Buildbot.
........
r53782 | martin.v.loewis | 2007-02-15 10:51:35 +0100 (Thu, 15 Feb 2007) | 2 lines
Patch #1397848: add the reasoning behind no-resize-on-shrinkage.
........
r53783 | georg.brandl | 2007-02-15 11:37:59 +0100 (Thu, 15 Feb 2007) | 2 lines
Make functools.wraps() docs a bit clearer.
........
r53785 | georg.brandl | 2007-02-15 12:29:04 +0100 (Thu, 15 Feb 2007) | 2 lines
Patch #1494140: Add documentation for the new struct.Struct object.
........
r53787 | georg.brandl | 2007-02-15 12:29:55 +0100 (Thu, 15 Feb 2007) | 2 lines
Add missing \versionadded.
........
r53800 | brett.cannon | 2007-02-15 23:54:39 +0100 (Thu, 15 Feb 2007) | 11 lines
Update the encoding package's search function to use absolute imports when
calling __import__. This helps make the expected search locations for encoding
modules be more explicit.
One could use an explicit value for __path__ when making the call to __import__
to force the exact location searched for encodings. This would give the most
strict search path possible if one is worried about malicious code being
imported. The unfortunate side-effect of that is that if __path__ was modified
on 'encodings' on purpose in a safe way it would not be picked up in future
__import__ calls.
........
r53801 | brett.cannon | 2007-02-16 20:33:01 +0100 (Fri, 16 Feb 2007) | 2 lines
Make the __import__ call in encodings.__init__ absolute with a level 0 call.
........
r53809 | vinay.sajip | 2007-02-16 23:36:24 +0100 (Fri, 16 Feb 2007) | 1 line
Minor fix for currentframe (SF #1652788).
........
r53818 | raymond.hettinger | 2007-02-19 03:03:19 +0100 (Mon, 19 Feb 2007) | 3 lines
Extend work on revision 52962: Eliminate redundant calls to PyObject_Hash().
........
r53820 | raymond.hettinger | 2007-02-19 05:08:43 +0100 (Mon, 19 Feb 2007) | 1 line
Add merge() function to heapq.
........
r53821 | raymond.hettinger | 2007-02-19 06:28:28 +0100 (Mon, 19 Feb 2007) | 1 line
Add tie-breaker count to preserve sort stability.
........
r53822 | raymond.hettinger | 2007-02-19 07:59:32 +0100 (Mon, 19 Feb 2007) | 1 line
Use C heapreplace() instead of slower _siftup() in pure python.
........
r53823 | raymond.hettinger | 2007-02-19 08:30:21 +0100 (Mon, 19 Feb 2007) | 1 line
Add test for merge stability
........
r53824 | raymond.hettinger | 2007-02-19 10:14:10 +0100 (Mon, 19 Feb 2007) | 1 line
Provide an example of defaultdict with non-zero constant factory function.
........
r53825 | lars.gustaebel | 2007-02-19 10:54:47 +0100 (Mon, 19 Feb 2007) | 2 lines
Moved misplaced news item.
........
r53826 | martin.v.loewis | 2007-02-19 11:55:19 +0100 (Mon, 19 Feb 2007) | 3 lines
Patch #1490190: posixmodule now includes os.chflags() and os.lchflags()
functions on platforms where the underlying system calls are available.
........
r53827 | raymond.hettinger | 2007-02-19 19:15:04 +0100 (Mon, 19 Feb 2007) | 1 line
Fixup docstrings for merge().
........
r53829 | raymond.hettinger | 2007-02-19 21:44:04 +0100 (Mon, 19 Feb 2007) | 1 line
Fixup set/dict interoperability.
........
r53837 | raymond.hettinger | 2007-02-21 06:20:38 +0100 (Wed, 21 Feb 2007) | 1 line
Add itertools.izip_longest().
........
r53838 | raymond.hettinger | 2007-02-21 18:22:05 +0100 (Wed, 21 Feb 2007) | 1 line
Remove filler struct item and fix leak.
........
2007-02-23 11:07:44 -04:00
|
|
|
"""
|
|
|
|
|
2005-10-20 16:59:25 -03:00
|
|
|
def main(srcfile):
|
2005-12-11 17:18:22 -04:00
|
|
|
argv0 = sys.argv[0]
|
2005-12-14 14:05:14 -04:00
|
|
|
components = argv0.split(os.sep)
|
|
|
|
argv0 = os.sep.join(components[-2:])
|
Merged revisions 53623-53858 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r53624 | peter.astrand | 2007-02-02 20:06:36 +0100 (Fri, 02 Feb 2007) | 1 line
We had several if statements checking the value of a fd. This is unsafe, since valid fds might be zero. We should check for not None instead.
........
r53635 | kurt.kaiser | 2007-02-05 07:03:18 +0100 (Mon, 05 Feb 2007) | 2 lines
Add 'raw' support to configHandler. Patch 1650174 Tal Einat.
........
r53641 | kurt.kaiser | 2007-02-06 00:02:16 +0100 (Tue, 06 Feb 2007) | 5 lines
1. Calltips now 'handle' tuples in the argument list (display '<tuple>' :)
Suggested solution by Christos Georgiou, Bug 791968.
2. Clean up tests, were not failing when they should have been.
4. Remove some camelcase and an unneeded try/except block.
........
r53644 | kurt.kaiser | 2007-02-06 04:21:40 +0100 (Tue, 06 Feb 2007) | 2 lines
Clean up ModifiedInterpreter.runcode() structure
........
r53646 | peter.astrand | 2007-02-06 16:37:50 +0100 (Tue, 06 Feb 2007) | 1 line
Applied patch 1124861.3.patch to solve bug #1124861: Automatically create pipes on Windows, if GetStdHandle fails. Will backport.
........
r53648 | lars.gustaebel | 2007-02-06 19:38:13 +0100 (Tue, 06 Feb 2007) | 4 lines
Patch #1652681: create nonexistent files in append mode and
allow appending to empty files.
........
r53649 | kurt.kaiser | 2007-02-06 20:09:43 +0100 (Tue, 06 Feb 2007) | 4 lines
Updated patch (CodeContext.061217.patch) to
[ 1362975 ] CodeContext - Improved text indentation
Tal Einat 16Dec06
........
r53650 | kurt.kaiser | 2007-02-06 20:21:19 +0100 (Tue, 06 Feb 2007) | 2 lines
narrow exception per [ 1540849 ] except too broad
........
r53653 | kurt.kaiser | 2007-02-07 04:39:41 +0100 (Wed, 07 Feb 2007) | 4 lines
[ 1621265 ] Auto-completion list placement
Move AC window below input line unless not enough space, then put it above.
Patch: Tal Einat
........
r53654 | kurt.kaiser | 2007-02-07 09:07:13 +0100 (Wed, 07 Feb 2007) | 2 lines
Handle AttributeError during calltip lookup
........
r53656 | raymond.hettinger | 2007-02-07 21:08:22 +0100 (Wed, 07 Feb 2007) | 3 lines
SF #1615701: make d.update(m) honor __getitem__() and keys() in dict subclasses
........
r53658 | raymond.hettinger | 2007-02-07 22:04:20 +0100 (Wed, 07 Feb 2007) | 1 line
SF: 1397711 Set docs conflated immutable and hashable
........
r53660 | raymond.hettinger | 2007-02-07 22:42:17 +0100 (Wed, 07 Feb 2007) | 1 line
Check for a common user error with defaultdict().
........
r53662 | raymond.hettinger | 2007-02-07 23:24:07 +0100 (Wed, 07 Feb 2007) | 1 line
Bug #1575169: operator.isSequenceType() now returns False for subclasses of dict.
........
r53664 | raymond.hettinger | 2007-02-08 00:49:03 +0100 (Thu, 08 Feb 2007) | 1 line
Silence compiler warning
........
r53666 | raymond.hettinger | 2007-02-08 01:07:32 +0100 (Thu, 08 Feb 2007) | 1 line
Do not let overflows in enumerate() and count() pass silently.
........
r53668 | raymond.hettinger | 2007-02-08 01:50:39 +0100 (Thu, 08 Feb 2007) | 1 line
Bypass set specific optimizations for set and frozenset subclasses.
........
r53670 | raymond.hettinger | 2007-02-08 02:42:35 +0100 (Thu, 08 Feb 2007) | 1 line
Fix docstring bug
........
r53671 | martin.v.loewis | 2007-02-08 10:13:36 +0100 (Thu, 08 Feb 2007) | 3 lines
Bug #1653736: Complain about keyword arguments to time.isoformat.
Will backport to 2.5.
........
r53679 | kurt.kaiser | 2007-02-08 23:58:18 +0100 (Thu, 08 Feb 2007) | 6 lines
Corrected some bugs in AutoComplete. Also, Page Up/Down in ACW implemented;
mouse and cursor selection in ACWindow implemented; double Tab inserts current
selection and closes ACW (similar to double-click and Return); scroll wheel now
works in ACW. Added AutoComplete instructions to IDLE Help.
........
r53689 | martin.v.loewis | 2007-02-09 13:19:32 +0100 (Fri, 09 Feb 2007) | 3 lines
Bug #1653736: Properly discard third argument to slot_nb_inplace_power.
Will backport.
........
r53691 | martin.v.loewis | 2007-02-09 13:36:48 +0100 (Fri, 09 Feb 2007) | 4 lines
Bug #1600860: Search for shared python library in LIBDIR, not
lib/python/config, on "linux" and "gnu" systems.
Will backport.
........
r53693 | martin.v.loewis | 2007-02-09 13:58:49 +0100 (Fri, 09 Feb 2007) | 2 lines
Update broken link. Will backport to 2.5.
........
r53697 | georg.brandl | 2007-02-09 19:48:41 +0100 (Fri, 09 Feb 2007) | 2 lines
Bug #1656078: typo in in profile docs.
........
r53731 | brett.cannon | 2007-02-11 06:36:00 +0100 (Sun, 11 Feb 2007) | 3 lines
Change a very minor inconsistency (that is purely cosmetic) in the AST
definition.
........
r53735 | skip.montanaro | 2007-02-11 19:24:37 +0100 (Sun, 11 Feb 2007) | 1 line
fix trace.py --ignore-dir
........
r53741 | brett.cannon | 2007-02-11 20:44:41 +0100 (Sun, 11 Feb 2007) | 3 lines
Check in changed Python-ast.c from a cosmetic change to Python.asdl (in
r53731).
........
r53751 | brett.cannon | 2007-02-12 04:51:02 +0100 (Mon, 12 Feb 2007) | 5 lines
Modify Parser/asdl_c.py so that the __version__ number for Python/Python-ast.c
is specified at the top of the file. Also add a note that Python/Python-ast.c
needs to be committed separately after a change to the AST grammar to capture
the revision number of the change (which is what __version__ is set to).
........
r53752 | lars.gustaebel | 2007-02-12 10:25:53 +0100 (Mon, 12 Feb 2007) | 3 lines
Bug #1656581: Point out that external file objects are supposed to be
at position 0.
........
r53754 | martin.v.loewis | 2007-02-12 13:21:10 +0100 (Mon, 12 Feb 2007) | 3 lines
Patch 1463026: Support default namespace in XMLGenerator.
Fixes #847665. Will backport.
........
r53757 | armin.rigo | 2007-02-12 17:23:24 +0100 (Mon, 12 Feb 2007) | 4 lines
Fix the line to what is my guess at the original author's meaning.
(The line has no effect anyway, but is present because it's
customary call the base class __init__).
........
r53763 | martin.v.loewis | 2007-02-13 09:34:45 +0100 (Tue, 13 Feb 2007) | 3 lines
Patch #685268: Consider a package's __path__ in imputil.
Will backport.
........
r53765 | martin.v.loewis | 2007-02-13 10:49:38 +0100 (Tue, 13 Feb 2007) | 2 lines
Patch #698833: Support file decryption in zipfile.
........
r53766 | martin.v.loewis | 2007-02-13 11:10:39 +0100 (Tue, 13 Feb 2007) | 3 lines
Patch #1517891: Make 'a' create the file if it doesn't exist.
Fixes #1514451.
........
r53767 | martin.v.loewis | 2007-02-13 13:08:24 +0100 (Tue, 13 Feb 2007) | 3 lines
Bug #1658794: Remove extraneous 'this'.
Will backport to 2.5.
........
r53769 | martin.v.loewis | 2007-02-13 13:14:19 +0100 (Tue, 13 Feb 2007) | 3 lines
Patch #1657276: Make NETLINK_DNRTMSG conditional.
Will backport.
........
r53771 | lars.gustaebel | 2007-02-13 17:09:24 +0100 (Tue, 13 Feb 2007) | 4 lines
Patch #1647484: Renamed GzipFile's filename attribute to name. The
filename attribute is still accessible as a property that emits a
DeprecationWarning.
........
r53772 | lars.gustaebel | 2007-02-13 17:24:00 +0100 (Tue, 13 Feb 2007) | 3 lines
Strip the '.gz' extension from the filename that is written to the
gzip header.
........
r53774 | martin.v.loewis | 2007-02-14 11:07:37 +0100 (Wed, 14 Feb 2007) | 2 lines
Patch #1432399: Add HCI sockets.
........
r53775 | martin.v.loewis | 2007-02-14 12:30:07 +0100 (Wed, 14 Feb 2007) | 2 lines
Update 1432399 to removal of _BT_SOCKADDR_MEMB.
........
r53776 | martin.v.loewis | 2007-02-14 12:30:56 +0100 (Wed, 14 Feb 2007) | 3 lines
Ignore directory time stamps when considering
whether to rerun libffi configure.
........
r53778 | lars.gustaebel | 2007-02-14 15:45:12 +0100 (Wed, 14 Feb 2007) | 4 lines
A missing binary mode in AppendTest caused failures in Windows
Buildbot.
........
r53782 | martin.v.loewis | 2007-02-15 10:51:35 +0100 (Thu, 15 Feb 2007) | 2 lines
Patch #1397848: add the reasoning behind no-resize-on-shrinkage.
........
r53783 | georg.brandl | 2007-02-15 11:37:59 +0100 (Thu, 15 Feb 2007) | 2 lines
Make functools.wraps() docs a bit clearer.
........
r53785 | georg.brandl | 2007-02-15 12:29:04 +0100 (Thu, 15 Feb 2007) | 2 lines
Patch #1494140: Add documentation for the new struct.Struct object.
........
r53787 | georg.brandl | 2007-02-15 12:29:55 +0100 (Thu, 15 Feb 2007) | 2 lines
Add missing \versionadded.
........
r53800 | brett.cannon | 2007-02-15 23:54:39 +0100 (Thu, 15 Feb 2007) | 11 lines
Update the encoding package's search function to use absolute imports when
calling __import__. This helps make the expected search locations for encoding
modules be more explicit.
One could use an explicit value for __path__ when making the call to __import__
to force the exact location searched for encodings. This would give the most
strict search path possible if one is worried about malicious code being
imported. The unfortunate side-effect of that is that if __path__ was modified
on 'encodings' on purpose in a safe way it would not be picked up in future
__import__ calls.
........
r53801 | brett.cannon | 2007-02-16 20:33:01 +0100 (Fri, 16 Feb 2007) | 2 lines
Make the __import__ call in encodings.__init__ absolute with a level 0 call.
........
r53809 | vinay.sajip | 2007-02-16 23:36:24 +0100 (Fri, 16 Feb 2007) | 1 line
Minor fix for currentframe (SF #1652788).
........
r53818 | raymond.hettinger | 2007-02-19 03:03:19 +0100 (Mon, 19 Feb 2007) | 3 lines
Extend work on revision 52962: Eliminate redundant calls to PyObject_Hash().
........
r53820 | raymond.hettinger | 2007-02-19 05:08:43 +0100 (Mon, 19 Feb 2007) | 1 line
Add merge() function to heapq.
........
r53821 | raymond.hettinger | 2007-02-19 06:28:28 +0100 (Mon, 19 Feb 2007) | 1 line
Add tie-breaker count to preserve sort stability.
........
r53822 | raymond.hettinger | 2007-02-19 07:59:32 +0100 (Mon, 19 Feb 2007) | 1 line
Use C heapreplace() instead of slower _siftup() in pure python.
........
r53823 | raymond.hettinger | 2007-02-19 08:30:21 +0100 (Mon, 19 Feb 2007) | 1 line
Add test for merge stability
........
r53824 | raymond.hettinger | 2007-02-19 10:14:10 +0100 (Mon, 19 Feb 2007) | 1 line
Provide an example of defaultdict with non-zero constant factory function.
........
r53825 | lars.gustaebel | 2007-02-19 10:54:47 +0100 (Mon, 19 Feb 2007) | 2 lines
Moved misplaced news item.
........
r53826 | martin.v.loewis | 2007-02-19 11:55:19 +0100 (Mon, 19 Feb 2007) | 3 lines
Patch #1490190: posixmodule now includes os.chflags() and os.lchflags()
functions on platforms where the underlying system calls are available.
........
r53827 | raymond.hettinger | 2007-02-19 19:15:04 +0100 (Mon, 19 Feb 2007) | 1 line
Fixup docstrings for merge().
........
r53829 | raymond.hettinger | 2007-02-19 21:44:04 +0100 (Mon, 19 Feb 2007) | 1 line
Fixup set/dict interoperability.
........
r53837 | raymond.hettinger | 2007-02-21 06:20:38 +0100 (Wed, 21 Feb 2007) | 1 line
Add itertools.izip_longest().
........
r53838 | raymond.hettinger | 2007-02-21 18:22:05 +0100 (Wed, 21 Feb 2007) | 1 line
Remove filler struct item and fix leak.
........
2007-02-23 11:07:44 -04:00
|
|
|
auto_gen_msg = common_msg % argv0
|
2005-10-20 16:59:25 -03:00
|
|
|
mod = asdl.parse(srcfile)
|
|
|
|
if not asdl.check(mod):
|
|
|
|
sys.exit(1)
|
|
|
|
if INC_DIR:
|
|
|
|
p = "%s/%s-ast.h" % (INC_DIR, mod.name)
|
2006-04-21 07:40:58 -03:00
|
|
|
f = open(p, "wb")
|
2007-05-07 19:24:25 -03:00
|
|
|
f.write(auto_gen_msg)
|
|
|
|
f.write('#include "asdl.h"\n\n')
|
2006-04-21 07:40:58 -03:00
|
|
|
c = ChainOfVisitors(TypeDefVisitor(f),
|
|
|
|
StructVisitor(f),
|
|
|
|
PrototypeVisitor(f),
|
|
|
|
)
|
|
|
|
c.visit(mod)
|
2007-05-07 19:24:25 -03:00
|
|
|
f.write("PyObject* PyAST_mod2obj(mod_ty t);\n")
|
2006-04-21 07:40:58 -03:00
|
|
|
f.close()
|
2005-10-20 16:59:25 -03:00
|
|
|
|
|
|
|
if SRC_DIR:
|
2006-04-21 07:40:58 -03:00
|
|
|
p = os.path.join(SRC_DIR, str(mod.name) + "-ast.c")
|
|
|
|
f = open(p, "wb")
|
2007-05-07 19:24:25 -03:00
|
|
|
f.write(auto_gen_msg)
|
|
|
|
f.write(c_file_msg % parse_version(mod))
|
|
|
|
f.write('#include "Python.h"\n')
|
|
|
|
f.write('#include "%s-ast.h"\n' % mod.name)
|
|
|
|
f.write('\n')
|
|
|
|
f.write("static PyTypeObject* AST_type;\n")
|
2006-04-21 07:40:58 -03:00
|
|
|
v = ChainOfVisitors(
|
|
|
|
PyTypesDeclareVisitor(f),
|
|
|
|
PyTypesVisitor(f),
|
|
|
|
FunctionVisitor(f),
|
|
|
|
ObjVisitor(f),
|
|
|
|
ASTModuleVisitor(f),
|
|
|
|
PartingShots(f),
|
|
|
|
)
|
|
|
|
v.visit(mod)
|
|
|
|
f.close()
|
2005-10-20 16:59:25 -03:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
import sys
|
|
|
|
import getopt
|
|
|
|
|
|
|
|
INC_DIR = ''
|
|
|
|
SRC_DIR = ''
|
|
|
|
opts, args = getopt.getopt(sys.argv[1:], "h:c:")
|
2006-04-21 07:40:58 -03:00
|
|
|
if len(opts) != 1:
|
2007-05-07 19:24:25 -03:00
|
|
|
sys.stdout.write("Must specify exactly one output file\n")
|
2006-04-21 07:40:58 -03:00
|
|
|
sys.exit(1)
|
2005-10-20 16:59:25 -03:00
|
|
|
for o, v in opts:
|
|
|
|
if o == '-h':
|
|
|
|
INC_DIR = v
|
|
|
|
if o == '-c':
|
|
|
|
SRC_DIR = v
|
|
|
|
if len(args) != 1:
|
2007-05-07 19:24:25 -03:00
|
|
|
sys.stdout.write("Must specify single input file\n")
|
2006-04-21 07:40:58 -03:00
|
|
|
sys.exit(1)
|
2005-10-20 16:59:25 -03:00
|
|
|
main(args[0])
|