Changes between Initial Version and Version 1 of Ticket #34807, comment 4
- Timestamp:
- Aug 31, 2023, 3:08:27 PM (15 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #34807, comment 4
initial v1 2 2 3 3 {{{ 4 python3 -c "from django import forms"4 python3 -c "from django import forms" 5 5 }}} 6 6 7 7 Does anyone understand why the difference? (my main question is why this wasn't picked up by the tests or my IRL testing within a Django test project) 8 9 EDIT: as said in the description, the import works when issuing: 10 11 {{{ 12 python3 -c "from django.db import models; from django import forms" 13 }}}