index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Parser
Commit message (
Expand
)
Author
Age
Files
Lines
*
Patch #975056 - fixes for restartable signals on *BSD. In addition,
Anthony Baxter
2004-10-13
1
-13/+4
*
SF #941229: Decode source code with sys.stdin.encoding in interactive
Hye-Shik Chang
2004-08-04
1
-0/+61
*
PEP-0318, @decorator-style. In Guido's words:
Anthony Baxter
2004-08-02
1
-0/+2
*
PyThreadState_Swap(NULL) didn't do what I thought it did. Fixes
Michael W. Hudson
2004-07-08
1
-1/+1
*
Pass the flags along, rather than ignoring them. Backport candidate
Neal Norwitz
2004-07-08
1
-1/+1
*
"#if WITH_THREAD" is incorrect; must be #ifdef instead; WITH_THREAD
Tim Peters
2004-07-07
1
-4/+4
*
This closes patch:
Michael W. Hudson
2004-07-07
1
-3/+38
*
[Patch #974633] Check PyObject_MALLOC return for error
Andrew M. Kuchling
2004-06-29
1
-0/+4
*
Fix for SF 780407.
Guido van Rossum
2004-03-20
1
-1/+1
*
Remove support for --without-universal-newlines (see PEP 11).
Skip Montanaro
2004-02-07
1
-2/+0
*
Remove a "temporary" piece of code that was probably unneeded since
Guido van Rossum
2003-12-15
1
-7/+0
*
Talk about old code: removed a reference to THINK_C.
Jack Jansen
2003-11-20
1
-30/+0
*
Getting rid of all the code inside #ifdef macintosh too.
Jack Jansen
2003-11-20
3
-28/+0
*
Getting rid of support for the ancient Apple MPW compiler.
Jack Jansen
2003-11-19
2
-24/+0
*
SF bug 751956: graminit.[ch] don't build on windows
Tim Peters
2003-06-17
1
-1/+4
*
Patch #734231: Update RiscOS support. In particular, correct
Martin v. Löwis
2003-05-10
1
-0/+4
*
Patch #708495: Port more stuff to OpenVMS.
Martin v. Löwis
2003-05-03
1
-0/+8
*
Remove file that was moved to ../Include
Guido van Rossum
2003-04-29
1
-18/+0
*
Changes from Jonathan Riehl to allow his pgen extension (PEP 269) to
Guido van Rossum
2003-04-17
3
-5/+34
*
compile_atom(): Neal's last checkin removing the setting of i broke
Barry Warsaw
2003-02-28
1
-0/+3
*
Remove setting i since it isn't used. Found in unrelated bug 690012.
Neal Norwitz
2003-02-28
1
-3/+0
*
Add URL for PEP to the source code encoding warning.
Marc-André Lemburg
2003-02-17
1
-6/+12
*
- Finally fixed the bug in compile() and exec where a string ending
Guido van Rossum
2003-02-13
1
-0/+9
*
patch 680474 that fixes bug 679880: compile/eval/exec refused utf-8 bom
Just van Rossum
2003-02-09
1
-2/+2
*
Fix [ 665014 ] files with long lines and an encoding crash.
Mark Hammond
2003-01-14
1
-1/+2
*
Constify filenames and scripts. Fixes #651362.
Martin v. Löwis
2002-12-11
3
-12/+14
*
Fix compiler warning on HP-UX.
Neal Norwitz
2002-11-02
1
-2/+2
*
Change PyOS_Readline declaration to match the recent change to myreadline.c
Skip Montanaro
2002-10-27
1
-2/+2
*
Patch #512981: Update readline input stream on sys.stdin/out change.
Martin v. Löwis
2002-10-26
2
-10/+22
*
Removed reliance on gcc/C99 extension.
Tim Peters
2002-09-03
1
-1/+3
*
Ignore encoding declarations inside strings. Fixes #603509.
Martin v. Löwis
2002-09-03
2
-1/+17
*
Squash a few calls to the hideously expensive PyObject_CallObject(o,a)
Guido van Rossum
2002-08-16
1
-3/+14
*
provide less mysterious error messages when seeing end-of-line in
Skip Montanaro
2002-08-15
1
-3/+6
*
Use Py_FatalError instead of abort.
Martin v. Löwis
2002-08-07
1
-2/+3
*
Fix PEP 263 code --without-unicode. Fixes #591943.
Martin v. Löwis
2002-08-07
1
-0/+18
*
Added a cast to shut up a compiler warning.
Jack Jansen
2002-08-05
1
-1/+1
*
Add 1 to lineno in deprecation warning. Fixes #590888.
Martin v. Löwis
2002-08-05
1
-1/+3
*
Make pgen compile with pydebug. Duplicate normalized names, as it may
Martin v. Löwis
2002-08-04
2
-2/+8
*
Group statements properly.
Martin v. Löwis
2002-08-04
1
-6/+12
*
Repaired a fatal compiler error in the debug build: it's not clear what
Tim Peters
2002-08-04
1
-1/+1
*
Squash compiler wng about signed-vs-unsigned mismatch.
Tim Peters
2002-08-04
1
-1/+1
*
Patch #534304: Implement phase 1 of PEP 263.
Martin v. Löwis
2002-08-04
4
-10/+463
*
SF patch #578297:
Andrew MacIntyre
2002-08-04
3
-12/+13
*
XXXROUNDUP(): Turns out this fixed Andrew MacIntyre's memory-mgmt
Tim Peters
2002-07-15
1
-10/+33
*
Fix bug 439992 - [win32] KeyboardInterrupt Not Caught.
Mark Hammond
2002-07-14
1
-0/+33
*
I trust the parser accelators are getting added :-).
Jeremy Hylton
2002-07-11
1
-6/+0
*
Fix SF Bug 564931: compile() traceback must include filename.
Thomas Heller
2002-07-09
1
-2/+11
*
The Py_REF_DEBUG/COUNT_ALLOCS/Py_TRACE_REFS macro minefield: added
Tim Peters
2002-07-09
1
-1/+1
*
PyNode_AddChild() and fancy_roundup(): Be paranoid about int overflow.
Tim Peters
2002-07-08
1
-2/+7
*
PyNode_AddChild(): Do aggressive over-allocation when the number of
Tim Peters
2002-07-08
1
-8/+41
[next]