django1/django/core/management/commands
Przemysław Suliga af5ec222cc Used time.monotonic() instead of time.time() where applicable.
time.monotonic() available from Python 3.3:

- Nicely communicates a narrow intent of "get a local system monotonic
  clock time" instead of possible "get a not necessarily accurate Unix
  time stamp because it needs to be communicated to outside of this
  process/machine" when time.time() is used.
  
- Its result isn't affected by the system clock updates.

There are two classes of time.time() uses changed to time.monotonic()
by this change:

- measuring time taken to run some code.

- setting and checking a "close_at" threshold for for persistent db
  connections (django/db/backends/base/base.py).
2019-05-08 18:34:22 +02:00
..
check.py Removed parser.add_arguments() arguments that match the defaults. 2018-07-02 17:54:57 -04:00
compilemessages.py Fixed #29973 -- Added compilemessages --ignore option. 2019-01-28 18:23:41 -05:00
createcachetable.py Removed parser.add_arguments() arguments that match the defaults. 2018-07-02 17:54:57 -04:00
dbshell.py Removed parser.add_arguments() arguments that match the defaults. 2018-07-02 17:54:57 -04:00
diffsettings.py Fixed #30057 -- Fixed diffsettings ignoring custom configured settings. 2019-01-12 11:07:03 -05:00
dumpdata.py Fixed typos in docs, comments, and exception messages. 2019-04-18 09:33:53 +02:00
flush.py Removed parser.add_arguments() arguments that match the defaults. 2018-07-02 17:54:57 -04:00
inspectdb.py Fixed #30388 -- Made inspectdb generate OneToOneFields rather than ForeignKey(unique/primary_key=True). 2019-04-25 08:09:32 +02:00
loaddata.py Removed redundant os.path.abspath() call. 2019-04-25 11:56:05 +02:00
makemessages.py Fixed #30147 -- Simplified directory creation with os.makedirs(..., exist_ok=True). 2019-01-31 12:53:36 -05:00
makemigrations.py Fixed #30147 -- Simplified directory creation with os.makedirs(..., exist_ok=True). 2019-01-31 12:53:36 -05:00
migrate.py Used time.monotonic() instead of time.time() where applicable. 2019-05-08 18:34:22 +02:00
runserver.py Fixed #30184 -- Removed ellipsis characters from shell output strings. 2019-02-13 13:59:44 -05:00
sendtestemail.py Removed parser.add_arguments() arguments that match the defaults. 2018-07-02 17:54:57 -04:00
shell.py Fixed #29774 -- Fixed django-admin shell hang on startup. 2018-10-19 20:00:12 -04:00
showmigrations.py Fixed #30186 -- Made showmigrations --list display the applied datetimes at verbosity 2+. 2019-03-08 08:25:38 -05:00
sqlflush.py Refs #23919 -- Replaced super(ClassName, self) with super(). 2017-01-25 12:23:46 -05:00
sqlmigrate.py Fixed #30189 -- Removed transaction from sqlmigrate output if database doesn't use one. 2019-03-07 18:28:22 -05:00
sqlsequencereset.py Refs #23919 -- Replaced super(ClassName, self) with super(). 2017-01-25 12:23:46 -05:00
squashmigrations.py Fixed #30184 -- Removed ellipsis characters from shell output strings. 2019-02-13 13:59:44 -05:00
startapp.py DRY'd startapp and startproject management commands. 2017-05-30 10:30:32 -04:00
startproject.py DRY'd startapp and startproject management commands. 2017-05-30 10:30:32 -04:00
test.py Fixed #29704 -- Fixed manage.py test --testrunner if it isn't followed by an equals sign. 2018-08-23 10:12:03 -04:00
testserver.py Removed implicit default store_true/false argparse args. 2017-04-01 20:03:56 -04:00