summaryrefslogtreecommitdiffstats
path: root/Lib/tabnanny.py
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2011-06-21 15:18:38 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2011-06-21 15:18:38 (GMT)
commitf1512a2967ac30c38135fb950d623d5fed856494 (patch)
tree03aaf88b18adecd7e97b29d89cd7f659d1264848 /Lib/tabnanny.py
parentb7149cad045b0273e2cb104a1f15ff942eab1cf6 (diff)
downloadcpython-f1512a2967ac30c38135fb950d623d5fed856494.zip
cpython-f1512a2967ac30c38135fb950d623d5fed856494.tar.gz
cpython-f1512a2967ac30c38135fb950d623d5fed856494.tar.bz2
Close #12383: Fix subprocess module with env={}: don't copy the environment
variables, start with an empty environment.
Diffstat (limited to 'Lib/tabnanny.py')
0 files changed, 0 insertions, 0 deletions
cumentation and/or other materials provided with the ** distribution. ** * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor ** the names of its contributors may be used to endorse or promote ** products derived from this software without specific prior written ** permission. ** ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT ** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR ** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT ** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, ** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT ** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, ** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY ** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT ** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE ** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." ** $QT_END_LICENSE$ ** ****************************************************************************/ //! [main.cpp body] #include <QtGui> // Include header files for application components. // ... int main(int argc, char *argv[]) { QApplication app(argc, argv); // Set up and show widgets. // ... return app.exec(); } //! [main.cpp body]