498 Commits (41bade96a4d1dcd35bbba79c2eabe052d02756a4)

Author SHA1 Message Date
Guido van Rossum dfede31c7f Eh, better error message for the previous change. It now says 28 years ago
Guido van Rossum 29d38cd088 Treat def f(a, b=1, c): ... as an error (missing default for c) 28 years ago
Guido van Rossum 90f827c67e Comment out the print statement about underflow. (This only seems to 28 years ago
Guido van Rossum 234e260d5e Since PyDict_GetItem() can't raise an exception any more, there's no 28 years ago
Guido van Rossum d295f120ae Make first raise argument optional 28 years ago
Guido van Rossum ed1100f3b6 Don't use sscanf(s, "%x", &c) to parse \xX... escapes; hardcode it. 29 years ago
Guido van Rossum ac1fc95c3c Fixed for WITHOUT_COMPLEX compilation (Jack) 29 years ago
Guido van Rossum beef8aa719 Cprrect stuoid tyops -- was comparing variabes with themselves because 29 years ago
Guido van Rossum 275558cb9f Plug a leak in code_dealloc() (and reordered the deallocs to match the 29 years ago
Guido van Rossum db9e20f418 Fix bug reported by Just: anonymous arguments used for tuples should 29 years ago
Guido van Rossum c8b6df9004 PyObject_Compare can raise an exception now. 29 years ago
Guido van Rossum 2f75b29630 Indent the #error directives so a classic K&R cpp doesn't see them. 29 years ago
Guido van Rossum 9a0f04d4cd Get rid of obsolete support for access statement. 29 years ago
Guido van Rossum b05a5c7698 Instead of importing graminit.h whenever one of the three grammar 'root' 29 years ago
Guido van Rossum 79f25d9a7b Quickly renamed the remaining files -- this directory is done. 29 years ago
Guido van Rossum 644a12b00c Tweaks to keep the Microsoft compiler quier. 29 years ago
Guido van Rossum 5f5e817e00 Support for alternative string quotes (a"xx", b"xx", c"xx", ...). 29 years ago
Guido van Rossum 228d7f3f67 Added assert statement. 29 years ago
Guido van Rossum 45b83915f8 New form of PyFPE_END_PROTECT macro. 29 years ago
Guido van Rossum 6af0c00ab6 Fix dumb bug calling parsestrplus with wrong node as argument. 29 years ago
Guido van Rossum 7c53111d5b Added support for ``if __debug__:'' -- if -O is given, this form is 29 years ago
Guido van Rossum 8e793d925c Add global Py_OptimizeFlag. SET_LINENO is omitted again unless this is 29 years ago
Guido van Rossum 0ae748d3c4 Changes for Lee Busby's SIGFPE patch set. 29 years ago
Guido van Rossum da4eb5c3b5 Instead of emitting SET_LINENO instructions, generate a line number 30 years ago
Guido van Rossum 7eb883a18e Remove unused variable. 30 years ago
Guido van Rossum 7b89b6a660 Intern all names and varnames in newcodeobject(), plus those string 30 years ago
Guido van Rossum 8b993a98db Add co_stacksize field to codeobject structure, and stacksize argument 30 years ago
Guido van Rossum 635abd24f0 Check for duplicate keyword arguments at compile time. 30 years ago
Guido van Rossum 80bb9655f0 Keep gcc -Wall happy. 30 years ago
Guido van Rossum d266eb460e New permission notice, includes CNRI. 30 years ago
Guido van Rossum e449af7da9 Ellipses -> Ellipsis rename (the dictionary really says that it should 30 years ago
Guido van Rossum 452a9833c9 Added line number to most compile-time error messages. 30 years ago
Guido van Rossum d8a6d1c2e7 Afterthough: leave both leading underscores in, 30 years ago
Guido van Rossum fe2236f3c8 Oops need to mangle global statement separately 30 years ago
Guido van Rossum 8ff077b094 Name mangling, what the heck! 30 years ago
Guido van Rossum 0dfcf753ad Disable support for access statement 30 years ago
Guido van Rossum 15cc9a0a76 Removed unused var; added error check for ``lambda: x=1''. 30 years ago
Guido van Rossum 8861b74445 Changes for slice and ellipses 30 years ago
Guido van Rossum 530956d247 Py_complex; and WITHOUT_COMPLEX added to getargs.c 30 years ago
Guido van Rossum 15ad9a6e52 only use 'j' for imaginary constants 31 years ago
Jack Jansen 1e7b2aa5d6 Removed unused var 31 years ago
Guido van Rossum 50564e8dae changes for complex and power (**) operator 31 years ago
Guido van Rossum 53f4524a92 disable code generation for access statement 31 years ago
Jack Jansen 95ffa23597 Removed unused variables 31 years ago
Guido van Rossum a1e7e62893 fix bug with missing default for last arg (discovered by Tommy Burnette) 31 years ago
Guido van Rossum 681d79aaf3 keyword arguments and faster calls 31 years ago
Guido van Rossum f10570b9eb 3rd arg for raise; INCOMPLETE keyword parameter passing (currently f(kw=value) is seen as f('kw', value)) 31 years ago
Guido van Rossum d9dfaf5a3b fix typo (== for =) in assignment 31 years ago
Guido van Rossum 7f7f274839 use Py_CHARMASK 32 years ago
Guido van Rossum 164d4ff0e5 added missing case to get_docstring 32 years ago