This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: [AST] Fix handling of large octal literals
Type: Stage:
Components: Interpreter Core Versions:
process
Status: closed Resolution: accepted
Dependencies: Superseder:
Assigned To: brett.cannon Nosy List: brett.cannon, ncoghlan
Priority: normal Keywords: patch

Created on 2005-03-20 09:22 by ncoghlan, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
ast_octal_long.diff ncoghlan, 2005-03-20 09:22 Fix handling of large octal's in parsenumber
Messages (2)
msg48006 - (view) Author: Nick Coghlan (ncoghlan) * (Python committer) Date: 2005-03-20 09:22
Python 2.4's compile.c contained a fix for large octal literals and 
int/long unification. 
 
This patch duplicates that fix in the ast-branch's ast.c 
msg48007 - (view) Author: Brett Cannon (brett.cannon) * (Python committer) Date: 2005-03-21 00:02
Logged In: YES 
user_id=357491

Applied in rev. 1.1.2.56 .

Thanks, Nick.

Now we just need to get genexps working for test_grammar to get farther.  
=)
History
Date User Action Args
2022-04-11 14:56:10adminsetgithub: 41724
2005-03-20 09:22:53ncoghlancreate