- 30 Mar, 2015 8 kayıt (commit)
-
-
Victor Stinner yazdı
All these functions only accept positive timeouts, so this change has no effect in practice.
-
Victor Stinner yazdı
Add also more tests for ROUNd_FLOOR.
-
R David Murray yazdı
-
R David Murray yazdı
This mimics get_param's error handling for the most part. It is slightly better in some regards as get_param can produce some really weird results for duplicate *0* parts. It departs from get_param slightly in that if we have a mix of non-extended and extended pieces for the same parameter name, the new parser assumes they were all supposed to be extended and concatenates all the values, whereas get_param always picks the non-extended parameter value. All of this error recovery is pretty much arbitrary decisions...
-
Victor Stinner yazdı
calls fstat() once. Before fstat() was called twice, which was not necessary.
-
Victor Stinner yazdı
check that microseconds and nanoseconds fits into the specified range.
-
Victor Stinner yazdı
Add _PyTime_AsTimeval_noraise() function. Call it when it's not possible (or not useful) to raise a Python exception on overflow.
-
Victor Stinner yazdı
Don't call _Py_open() from _close_open_fds_safe() because it is call just after fork(). It's not good to play with locks (the GIL) between fork() and exec(). Use instead _Py_open_noraise() which doesn't touch to the GIL.
-
- 29 Mar, 2015 16 kayıt (commit)
-
-
Victor Stinner yazdı
datetime.time: round towards minus infinity ("floor") instead of rounding towards zero ("down").
-
Victor Stinner yazdı
infinity (-inf) instead of rounding towards zero. Replace _PyTime_ROUND_DOWN with _PyTime_ROUND_FLOOR.
-
Victor Stinner yazdı
- _PyTime_ObjectToTime_t() - _PyTime_ObjectToTimespec() - _PyTime_ObjectToTimeval()
-
Serhiy Storchaka yazdı
directories are left after running a test.
-
Victor Stinner yazdı
-
Victor Stinner yazdı
* Remove _PyTime_gettimeofday() * Add _PyTime_GetSystemClock()
-
Serhiy Storchaka yazdı
directories are left after running a test.
-
Serhiy Storchaka yazdı
now is non-modifiable mapping.
-
R David Murray yazdı
Also deprecate the undocumented set argument instead of removing it already in 3.5. Initial patch by Demian Brecht.
-
Benjamin Peterson yazdı
-
Donald Stufft yazdı
-
R David Murray yazdı
-
R David Murray yazdı
Previously, if you hit ctl-c while the pager was active, the python that launched the subprocess for the pager would see the KeyboardInterrupt in the __exit__ method of the subprocess context manager where it was waiting for the subprocess to complete, ending the wait. This would leave the pager running, while the interactive interpreter, after handling the exception by printing it, would go back to trying to post a prompt...but the pager would generally have the terminal in raw mode, and in any case would be still trying to read from stdin. On some systems, even exiting python at that point would not restore the terminal mode. The problem with raw mode could also happen if ctl-C was hit when pydoc was called from the shell command line and the pager was active. Instead, we now wait on the subprocess in a loop, ignoring KeyboardInterrupt just like the pager does, until the pager actually exits. (Note: this was a regression relative to python2...in python2 the pager is called via system, and system does not return until the pager exits.)
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
is wider then partitioned string.
-
Serhiy Storchaka yazdı
-
- 28 Mar, 2015 11 kayıt (commit)
-
-
Serhiy Storchaka yazdı
Free memory, unlock hanging threads.
-
Serhiy Storchaka yazdı
Free memory, unlock hanging threads.
-
Victor Stinner yazdı
_PyTime_GetSystemClockWithInfo() to not raise an exception and return 0 on error (it should never occur)
-
Victor Stinner yazdı
module. time.clock_settime() now uses this rounding method instead of _PyTime_ROUND_DOWN to handle correctly dates before 1970.
-
Victor Stinner yazdı
Remove also the now unused _PyTime_AddDouble() function.
-
Victor Stinner yazdı
-
Victor Stinner yazdı
Add also a new _PyTime_AsMicroseconds() function. threading.TIMEOUT_MAX is now be smaller: only 292 years instead of 292,271 years on 64-bit system for example. Sorry, your threads will hang a *little bit* shorter. Call me if you want to ensure that your locks wait longer, I can share some tricks with you.
-
Victor Stinner yazdı
I didn't notice that the ssl module uses private attributes of socket objects.
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
* _PyTime_AsTimeval() now ensures that tv_usec is always positive * _PyTime_AsTimespec() now ensures that tv_nsec is always positive * _PyTime_AsTimeval() now returns an integer on overflow instead of raising an exception
-
- 27 Mar, 2015 5 kayıt (commit)
-
-
Victor Stinner yazdı
Move Py_BEGIN_ALLOW_THREADS/Py_END_ALLOW_THREADS inside internal_select_ex() to prepare a switch to the _PyTime_t type and retry syscall on EINTR.
-
Victor Stinner yazdı
* Add _PyTime_AsTimespec() * Add unit tests for _PyTime_AsTimespec()
-
Victor Stinner yazdı
-
Victor Stinner yazdı
* Add _PyTime_GetSystemClockWithInfo()
-
Victor Stinner yazdı
* Add _PyTime_FromNanoseconds() * Add _PyTime_AsSecondsDouble() * Add unit tests for _PyTime_AsSecondsDouble()
-