170 Commits (46874c26ee1fc752e2e6930efa1d223b2351edb8)

Author SHA1 Message Date
Georg Brandl ee91be45df Make bytes_repr return a string containing a b"" literal. 19 years ago
Georg Brandl 88fc6646d1 * Remove PRINT_ITEM(_TO), PRINT_NEWLINE(_TO) opcodes. 19 years ago
Guido van Rossum 16be03e4a2 Some more changes related to the new except syntax and semantics, 19 years ago
Neal Norwitz c150536b5e PEP 3107 - Function Annotations thanks to Tony Lownds 19 years ago
Guido van Rossum 4f72a78684 Jiwon Seo's PEP 3102 implementation. 19 years ago
Georg Brandl 52318d6215 Patch #1550786: ellipsis literal. 20 years ago
Georg Brandl 7cae87ca7b Patch #1550800: make exec a function. 20 years ago
Georg Brandl 17ab9a02b5 Fix set literals not being visited in symtable creation. 20 years ago
Brett Cannon e2e23ef97d Remove the UNARY_CONVERT opcode (was used for backticks). Also bumped up the 20 years ago
Thomas Wouters 00ee7baf49 Merge current trunk into p3yk. This includes the PyNumber_Index API change, 20 years ago
Neal Norwitz 7605936dee Handle PyString_FromInternedString() failing (unlikely, but possible). 20 years ago
Neal Norwitz 6f5ff3f3eb Klocwork made another run and found a bunch more problems. 20 years ago
Thomas Wouters 0e3f591aee Merged revisions 46753-51188 via svnmerge from 20 years ago
Neal Norwitz 18b6adf9b2 Handle more mem alloc issues found with failmalloc 20 years ago
Neal Norwitz b59d08c2fb Fix more memory allocation issues found with failmalloc. 20 years ago
Neal Norwitz d12bd012a6 Handle more memory allocation failures without crashing. 20 years ago
Thomas Wouters 73e5a5b65d Merge the rest of the trunk. 20 years ago
Georg Brandl ddbaa660d3 Patch #1346214: correctly optimize away "if 0"-style stmts 20 years ago
Thomas Wouters 49fd7fa443 Merge p3yk branch with the trunk up to revision 45595. This breaks a fair 20 years ago
Anthony Baxter 019aec618a Make symtable.c safe for C++ compilers. Changed macros in the same way as 20 years ago
Neal Norwitz 090b3dde06 No need to export PySTEntry_New, it is only used in symtable.c 20 years ago
Guido van Rossum c2e20744b2 PEP 343 -- the with-statement. 20 years ago
Thomas Wouters dca3b9c797 PEP 308 implementation, including minor refdocs and some testcases. It 20 years ago
Martin v. Löwis d96ee90993 Use Py_ssize_t to count the 20 years ago
Martin v. Löwis 18e165558b Merge ssize_t branch. 20 years ago
Tim Peters d8fe7ab711 analyze_cells(): This no longer compiled under VC 7.1. 20 years ago
Neal Norwitz 46b7bda9bc Fix icc warnings: conversion from "long" to "int" may lose significant bits 20 years ago
Neal Norwitz daf595f8a9 Fix icc warnings: shadowing local variable (i) and complex is set but not used, so remove 20 years ago
Neal Norwitz 5d0ad50f5a Bug #889500, fix line number on SyntaxWarning for global declarations. 20 years ago
Neal Norwitz 3715c3e576 Fix a few more ref leaks. Backport candidate 20 years ago
Neal Norwitz 4737b2348b Last batch of ref leaks in new AST code. 20 years ago
Nick Coghlan 99b2533539 Bring handling of genexpr in line with other anonymous scope names 20 years ago
Neal Norwitz b6fc9df8fc Fix a lot of memory and ref leaks in error paths. 20 years ago
Neal Norwitz 62c2fac9a0 Do not pollute name block_ty, prefix with _Py_ 20 years ago
Neil Schemenauer 2dfcef5c57 Fix check_unoptimized() function. The only optimized namespaces are 20 years ago
Neil Schemenauer 8b528b28f1 Fix private name mangling. The symtable also must do mangles so that 20 years ago
Jeremy Hylton ec97a28b60 Fix a bunch of imports to use code.h instead of compile.h. 20 years ago
Armin Rigo 3144130217 ANSI-C-ify the placement of local var declarations. 20 years ago
Jeremy Hylton 3e0055f8c6 Merge ast-branch to head 20 years ago
Raymond Hettinger 354433a59d SF patch #872326: Generator expression implementation 22 years ago
Jeremy Hylton 4d508adae3 Fix for SF [ 734869 ] Lambda functions in list comprehensions 23 years ago
Jeremy Hylton 2990640d8a Add a comment explaining the st_symbols cache. 24 years ago
Tim Peters 0f2d4b84a6 PySymtableEntry_New(): I'm not sure what this routine is doing, but it 24 years ago
Jeremy Hylton 86424e333f SF bug #488687 reported by Neal Norwitz 24 years ago
Barry Warsaw 4b4ab20f2c ste_repr(): Conversion of sprintf() to PyOS_snprintf() for buffer 24 years ago
Guido van Rossum 6f7993765a Add optional docstrings to member descriptors. For backwards 25 years ago
Tim Peters 5ca576ed0a Merging the gen-branch into the main line, at Guido's direction. Yay! 25 years ago
Jeremy Hylton 4db62b1e14 Improved __future__ parser; still more to do 25 years ago
Jeremy Hylton 29906eef3a Preliminary support for future nested scopes 25 years ago
Jeremy Hylton 74b3bc47df Fix for bug 133489: compiler leaks memory 25 years ago