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.
Created on 2008年04月02日 00:10 by fijal, last changed 2022年04月11日 14:56 by admin. This issue is now closed.
| Files | ||||
|---|---|---|---|---|
| File name | Uploaded | Description | Edit | |
| ssl.py | fijal, 2008年04月02日 00:10 | |||
| Messages (8) | |||
|---|---|---|---|
| msg64829 - (view) | Author: Maciek Fijalkowski (fijal) | Date: 2008年04月02日 00:10 | |
Infinite recursion problem. I know this file is obscure, but it's still pretty valid python. |
|||
| msg64841 - (view) | Author: Amaury Forgeot d'Arc (amaury.forgeotdarc) * (Python committer) | Date: 2008年04月02日 09:42 | |
Testing with a much simpler file ("a = 0\n" * 1000), there is a limit to
the number of statements in one file, around (sys.recursionlimit - 24).
|
|||
| msg64863 - (view) | Author: Collin Winter (collinwinter) * (Python committer) | Date: 2008年04月02日 15:34 | |
Yes, this is a known problem with the pattern matching system. |
|||
| msg69966 - (view) | Author: Nick Edds (nedds) | Date: 2008年07月18日 18:35 | |
My iterative pattern matching doesn't break on this file, but as mentioned elsewhere, the iterative solution is slower. I'll work on speeding it up, but I don't immediately see a good way to do so. Any ideas would be greatly appreciated. |
|||
| msg70006 - (view) | Author: engelbert gruber (grubert) * | Date: 2008年07月19日 06:39 | |
The much simpler input might be another problem::
# this is accepted
b = ("a = 0\n" * 100)
# this one breaks it
("a = 0\n" * 100)
this looks similar to ``map(None, t)`` on a line by itself is
translated to ``list(map(None, t))`` and the message "You should use a
for loop her"
|
|||
| msg70091 - (view) | Author: engelbert gruber (grubert) * | Date: 2008年07月20日 21:05 | |
Truncating the file to 2448 lines helps, seams to be a size not content problem. All fixes work exept fix_next.py . And removing the lines :: | mod=file_input< any+ > makes even this run through. |
|||
| msg74013 - (view) | Author: Mark Hammond (mhammond) * (Python committer) | Date: 2008年09月29日 07:06 | |
pywin32 has a number of files that break in this way - often files generated by h2py.py |
|||
| msg74262 - (view) | Author: Collin Winter (collinwinter) * (Python committer) | Date: 2008年10月03日 17:08 | |
Fixed in r66775. |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022年04月11日 14:56:32 | admin | set | github: 46784 |
| 2008年10月03日 17:08:49 | collinwinter | set | status: open -> closed resolution: fixed messages: + msg74262 |
| 2008年09月29日 07:06:47 | mhammond | set | nosy:
+ mhammond messages: + msg74013 |
| 2008年07月20日 21:05:06 | grubert | set | messages: + msg70091 |
| 2008年07月19日 06:39:42 | grubert | set | nosy:
+ grubert messages: + msg70006 |
| 2008年07月18日 18:35:37 | nedds | set | nosy:
+ nedds messages: + msg69966 |
| 2008年05月08日 04:19:52 | rbp | set | nosy: + rbp |
| 2008年04月02日 15:34:46 | collinwinter | set | priority: normal messages: + msg64863 |
| 2008年04月02日 09:42:43 | amaury.forgeotdarc | set | nosy:
+ amaury.forgeotdarc messages: + msg64841 |
| 2008年04月02日 00:10:13 | fijal | create | |