- 01 Oct, 2014 6 commits
-
-
Ned Deily authored
-
Ned Deily authored
-
R David Murray authored
-
R David Murray authored
We don't want to go into a full explanation of scopes at this point in the tutorial, so we just mention that the loop creates or overwrites a persistent variable while the listcomp doesn't. Not mentioning this would lead someone to incorrectly assume loops and listcomps were *completely* equivalent, which would confuse them later. Original patch by Rose Ames, tweaked to remove the word 'scope'.
-
R David Murray authored
-
R David Murray authored
Patch by Francis MB.
-
- 30 Sep, 2014 33 commits
-
-
Victor Stinner authored
-
Victor Stinner authored
Check if the sporadic failure is related to a timeout. The test just failed on the buildbot "x86 Windows7 3.x": 1 thread done / 20 (the 'done' condition was not signaled because 1 < 20).
-
Terry Jan Reedy authored
-
Terry Jan Reedy authored
-
Georg Brandl authored
-
Georg Brandl authored
Move Doc/tools/sphinxext content to Doc/tools, there is no need for the nested subdirectory anymore.
-
Georg Brandl authored
Move Doc/tools/sphinxext content to Doc/tools, there is no need for the nested subdirectory anymore.
-
Georg Brandl authored
-
Georg Brandl authored
-
Georg Brandl authored
-
Georg Brandl authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Antoine Pitrou authored
-
Antoine Pitrou authored
Issue #18711: Add a new `PyErr_FormatV` function, similar to `PyErr_Format` but accepting a `va_list` argument.
-
Victor Stinner authored
remove delayed calls that were cancelled.
-
Victor Stinner authored
calls that were cancelled.
-
Benjamin Peterson authored
-
Antoine Pitrou authored
Remove pointless "vile hack" that can cause the build step to fail when some extension modules can't be imported. See issue #5309 for the build failures, issue #458343 for the original motivation.
-
Victor Stinner authored
_read_null(), because _read_null() cannot be used on AIX. On AIX, reading from NULL is allowed: the first page of memory is a mapped read-only on AIX. _read_null() and _sigabrt() don't accept parameters.
-
Victor Stinner authored
because _read_null() cannot be used on AIX. On AIX, reading from NULL is allowed: the first page of memory is a mapped read-only on AIX.
-
Victor Stinner authored
-
Victor Stinner authored
crash.
-
Victor Stinner authored
os.posix_fadvise() nor os.posix_fallocate() because their prototypes in system headers are wrong.
-
Victor Stinner authored
os.posix_fallocate() because their prototypes in system headers are wrong.
-
Gregory P. Smith authored
-Wsign-compare warnings in unicodeobject.c. These were all a result of sizeof() being unsigned and being compared to a Py_ssize_t. Not actual problems.
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
From Robert Collins.
-
- 29 Sep, 2014 1 commit
-
-
Benjamin Peterson authored
-