#13374 closed (fixed)
A few more small PyPy issues
| Reported by: | Alex Gaynor | Owned by: | nobody |
|---|---|---|---|
| Component: | Uncategorized | Version: | dev |
| Severity: | Keywords: | ||
| Cc: | Triage Stage: | Accepted | |
| Has patch: | no | Needs documentation: | no |
| Needs tests: | no | Patch needs improvement: | no |
| Easy pickings: | no | UI/UX: | no |
Description
First one is just a differing repr in the tests (pypy includes a module name, cpython doesn't), second is a GC issue.
Attachments (1)
Change History (8)
by , 16 years ago
| Attachment: | django-pypy.diff added |
|---|
comment:1 by , 16 years ago
| Triage Stage: | Unreviewed → Ready for checkin |
|---|
comment:2 by , 16 years ago
| Resolution: | → fixed |
|---|---|
| Status: | new → closed |
comment:3 by , 16 years ago
comment:4 by , 16 years ago
| Has patch: | unset |
|---|---|
| Resolution: | fixed |
| Status: | closed → reopened |
| Triage Stage: | Ready for checkin → Accepted |
The change to regressiontests/forms/localflavor/se.py broke the running of the __test__ dictionary doctests specified in regressiontests/forms/tests.py, so I've reverted it in r13008. There must be a better way to fix PyPy compatibility for this test...?
comment:5 by , 16 years ago
The fix will be to do date.today() == date(expected, stuff, here); >>> True .
comment:6 by , 16 years ago
| Resolution: | → fixed |
|---|---|
| Status: | reopened → closed |
Note:
See TracTickets
for help on using tickets.
(In [12998]) Fixed #13374 -- Corrected some more minor issues causing problems for PyPy. Thanks to Alex Gaynor for the report and patch.